Files
jindengchen-ai-report/cool-unix/uni_modules/cool-ui/components/cl-progress/props.ts

19 lines
379 B
TypeScript
Raw Normal View History

2025-11-13 10:36:23 +08:00
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;
};