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

14 lines
247 B
TypeScript
Raw Normal View History

2025-07-21 16:47:04 +08:00
export type ClIconPassThrough = {
className?: string;
};
export type ClIconProps = {
className?: string;
pt?: ClIconPassThrough;
name?: string;
size?: string | number;
height?: string | number;
width?: string | number;
color?: string;
};