props.ts 432 B

1234567891011121314151617181920
  1. import type { PassThroughProps } from "../../types";
  2. import type { ClIconProps } from "../cl-icon/props";
  3. export type ClRadioPassThrough = {
  4. className?: string;
  5. icon?: ClIconProps;
  6. label?: PassThroughProps;
  7. };
  8. export type ClRadioProps = {
  9. className?: string;
  10. pt?: ClRadioPassThrough;
  11. modelValue?: any;
  12. activeIcon?: string;
  13. inactiveIcon?: string;
  14. showIcon?: boolean;
  15. label?: string;
  16. value?: any;
  17. disabled?: boolean;
  18. };