Skip to content

Commit

Permalink
Add a "lg" size for Text
Browse files Browse the repository at this point in the history
  • Loading branch information
jviide committed Sep 14, 2024
1 parent fffed78 commit beeb0fb
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/smart-forks-sort.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@badrap/libapp": patch
---

Add a "lg" size for Text
2 changes: 1 addition & 1 deletion src/ui/experimental/Text.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Responsive, UiNode, element } from "../internal.js";

type TextProps = {
size?: Responsive<"xs" | "sm" | "md">;
size?: Responsive<"xs" | "sm" | "md" | "lg">;
align?: Responsive<"left" | "center" | "right">;
weight?: Responsive<"regular" | "medium" | "semibold">;
color?: "base" | "gray" | "red" | "orange" | "yellow" | "green" | "blue";
Expand Down

0 comments on commit beeb0fb

Please sign in to comment.