EASYAIuniappNewUI/node_modules/@tuniao/tnui-vue3-uniapp/constants/size.ts
2025-02-08 18:50:38 +08:00

6 lines
251 B
TypeScript

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]