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

19 lines
379 B
TypeScript
Raw Normal View History

2025-07-26 17:42:36 +08:00
import type { PassThroughProps } from "../../types";
export type ClProgressPassThrough = {
className?: string;
outer?: PassThroughProps;
inner?: PassThroughProps;
text?: PassThroughProps;
};
2025-07-21 16:47:04 +08:00
export type ClProgressProps = {
className?: string;
2025-07-26 17:42:36 +08:00
pt?: ClProgressPassThrough;
2025-07-21 16:47:04 +08:00
value?: number;
strokeWidth?: number;
showText?: boolean;
color?: string;
unColor?: string;
};