Files
WAI_Project_UNIX/uni_modules/cool-ui/components/cl-progress/props.ts
2025-07-26 17:42:36 +08:00

19 lines
379 B
TypeScript

import type { PassThroughProps } from "../../types";
export type ClProgressPassThrough = {
className?: string;
outer?: PassThroughProps;
inner?: PassThroughProps;
text?: PassThroughProps;
};
export type ClProgressProps = {
className?: string;
pt?: ClProgressPassThrough;
value?: number;
strokeWidth?: number;
showText?: boolean;
color?: string;
unColor?: string;
};