props.ts 449 B

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