import type { ExtractPropTypes } from 'vue'

export const horPopupProps = {
  title: {
    type: String,
    value: '',
  },
  show: {
    type: Boolean,
    value: false,
  },
}

export type HorPopupProps = ExtractPropTypes<typeof horPopupProps>
