17 lines
420 B
TypeScript
Raw Permalink Normal View History

2024-11-05 10:14:41 +08:00
import { buildProps } from '../../../../utils'
import { formComponentSizes } from '../../../../constants'
export const formMetaProps = buildProps({
/**
* @description
*/
size: {
type: String,
values: formComponentSizes,
},
/**
* @description
*/
disabled: Boolean,
} as const)