6 lines
251 B
TypeScript
Raw Permalink Normal View History

2024-11-05 10:09:18 +08:00
export const componentSizes = ['', 'sm', 'lg', 'xl'] as const
export const formComponentSizes = ['', 'sm', 'lg'] as const
export type ComponentSize = (typeof componentSizes)[number]
export type FormComponentSize = (typeof formComponentSizes)[number]