props.ts 451 B

123456789101112131415161718192021
  1. import type { PassThroughProps } from "../../types";
  2. export type ClProgressCirclePassThrough = {
  3. className?: string;
  4. text?: PassThroughProps;
  5. };
  6. export type ClProgressCircleProps = {
  7. className?: string;
  8. pt?: ClProgressCirclePassThrough;
  9. value?: number;
  10. size?: number;
  11. strokeWidth?: number;
  12. color?: string | any;
  13. unColor?: string | any;
  14. showText?: boolean;
  15. unit?: string;
  16. startAngle?: number;
  17. clockwise?: boolean;
  18. duration?: number;
  19. };