UNPKG

606 BTypeScriptView Raw
1import * as React from 'react';
2import type { ProgressProps } from '..';
3import type { StrokeColorObject } from '../interface';
4export 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}
16declare const PtgCircle: React.ForwardRefExoticComponent<ColorGradientProps & React.RefAttributes<SVGCircleElement>>;
17export default PtgCircle;