import type { PropType } from "vue"; import type { RadioGroupOption, RadioGroupOrientation, RadioGroupSize } from "./RadioGroup.types"; export const radioGroupProps = { modelValue: { type: String, default: "", }, options: { type: Array as PropType, default: () => [], }, orientation: { type: String as PropType, default: "vertical", }, size: { type: String as PropType, default: "md", }, disabled: { type: Boolean, default: false, }, invalid: { type: Boolean, default: false, }, };