We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c4ec15 commit 76eb229Copy full SHA for 76eb229
src/components/tag/Tag.tsx
@@ -16,7 +16,7 @@ import {
16
import { createIcon } from "../create-icon";
17
import { Icon } from "../icon";
18
19
-export type TagSizes = "sm" | "md" | "lg" | "xl";
+export type TagSize = "sm" | "md" | "lg" | "xl";
20
export type TagVariant = "solid" | "subtle" | "outline";
21
export type TagTheme = "base" | "primary";
22
@@ -25,7 +25,7 @@ export interface TagProps extends PressableProps {
25
* The size of the Tag component.
26
* @default md
27
*/
28
- size: TagSizes;
+ size: TagSize;
29
/**
30
* The variant of the Tag component.
31
* @default solid
0 commit comments