@daysnap/horn-ui
Version:
hron ui
10 lines (7 loc) • 296 B
text/typescript
import type { ExtractPropTypes } from 'vue'
import { makeBooleanProp, makeNumericProp } from '../utils'
export const horFixedActionsProps = {
placeholder: makeBooleanProp(true),
height: makeNumericProp(''),
}
export type HorFixedActionsProps = ExtractPropTypes<typeof horFixedActionsProps>