props.ts 497 B

1234567891011121314151617181920
  1. import type { ClIconProps } from "../cl-icon/props";
  2. import type { PassThroughProps } from "../../types";
  3. import type { ClTextProps } from "../cl-text/props";
  4. export type ClSelectTriggerPassThrough = {
  5. className?: string;
  6. icon?: ClIconProps;
  7. placeholder?: PassThroughProps;
  8. text?: ClTextProps;
  9. };
  10. export type ClSelectTriggerProps = {
  11. className?: string;
  12. pt?: ClSelectTriggerPassThrough;
  13. text?: string;
  14. placeholder?: string;
  15. arrowIcon?: string;
  16. disabled?: boolean;
  17. focus?: boolean;
  18. };