9 lines
153 B
TypeScript
9 lines
153 B
TypeScript
export type ClProgressProps = {
|
|
className?: string;
|
|
value?: number;
|
|
strokeWidth?: number;
|
|
showText?: boolean;
|
|
color?: string;
|
|
unColor?: string;
|
|
};
|