props.ts 379 B

123456789101112131415161718
  1. import type { PassThroughProps } from "../../types";
  2. export type ClProgressPassThrough = {
  3. className?: string;
  4. outer?: PassThroughProps;
  5. inner?: PassThroughProps;
  6. text?: PassThroughProps;
  7. };
  8. export type ClProgressProps = {
  9. className?: string;
  10. pt?: ClProgressPassThrough;
  11. value?: number;
  12. strokeWidth?: number;
  13. showText?: boolean;
  14. color?: string;
  15. unColor?: string;
  16. };