PtgCircle.d.ts 606 B

1234567891011121314151617
  1. import * as React from 'react';
  2. import type { ProgressProps } from '..';
  3. import type { StrokeColorObject } from '../interface';
  4. export interface ColorGradientProps {
  5. prefixCls: string;
  6. gradientId: string;
  7. style: React.CSSProperties;
  8. ptg: number;
  9. radius: number;
  10. strokeLinecap: ProgressProps['strokeLinecap'];
  11. strokeWidth: ProgressProps['strokeWidth'];
  12. size: number;
  13. color: string | StrokeColorObject;
  14. gapDegree: number;
  15. }
  16. declare const PtgCircle: React.ForwardRefExoticComponent<ColorGradientProps & React.RefAttributes<SVGCircleElement>>;
  17. export default PtgCircle;