import type { ExtractPropTypes } from 'vue'
import { iconProps } from 'vant'

export const horIconProps = Object.assign(
  {
    svg: {
      type: Boolean,
      default: false,
    },
  },
  iconProps,
)

export type HorIconProps = ExtractPropTypes<typeof horIconProps>
