Files
WAI_Project_UNIX/uni_modules/cool-ui/components/cl-loading/props.ts
2025-07-21 16:47:04 +08:00

15 lines
270 B
TypeScript

import type { ClIconProps } from "../cl-icon/props";
export type ClLoadingPassThrough = {
className?: string;
icon?: ClIconProps;
};
export type ClLoadingProps = {
className?: string;
pt?: ClLoadingPassThrough;
loading?: boolean;
size?: any;
color?: string;
};