props.ts 337 B

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