import type { ExtractPropTypes } from 'vue'
import { horHeaderProps } from '../hor-header'
import { makeBooleanProp } from '../utils'

export const horViewProps = {
  ...horHeaderProps,
  useNavBar: makeBooleanProp(true),
  useTabScroll: makeBooleanProp(false),
}

export type HorViewProps = ExtractPropTypes<typeof horViewProps>
