import type { ExtractPropTypes } from 'vue'
import { makeBooleanProp, makeNumericProp } from '../utils'

export const horFixedActionsProps = {
  placeholder: makeBooleanProp(true),
  height: makeNumericProp(''),
}

export type HorFixedActionsProps = ExtractPropTypes<typeof horFixedActionsProps>
