Files
WAI_Project_UNIX/uni_modules/cool-ui/components/cl-select-trigger/props.ts

17 lines
337 B
TypeScript
Raw Normal View History

2025-07-21 16:47:04 +08:00
import type { ClIconProps } from "../cl-icon/props";
export type ClSelectTriggerPassThrough = {
className?: string;
icon?: ClIconProps;
};
export type ClSelectTriggerProps = {
className?: string;
pt?: ClSelectTriggerPassThrough;
text?: string;
placeholder?: string;
arrowIcon?: string;
disabled?: boolean;
focus?: boolean;
};