import type { ExtractPropTypes } from 'vue'
import { makeStringProp } from '../utils'

export const horCellGroupProps = {
  title: makeStringProp(''),
}

export type HorCellGroupProps = ExtractPropTypes<typeof horCellGroupProps>
