chore: add Size type

This commit is contained in:
ValdiANS
2025-12-04 22:46:26 +07:00
parent b37c3f87b0
commit be725d42c3
+2 -2
View File
@@ -1,4 +1,4 @@
type Color =
export type Color =
| 'primary'
| 'secondary'
| 'accent'
@@ -9,4 +9,4 @@ type Color =
| 'error'
| 'none';
export { Color };
export type Size = 'xs' | 'sm' | 'md' | 'lg' | 'xl';