linkmore-design
Version:
π πlmη»δ»ΆεΊγπ
11 lines (10 loc) β’ 342 B
TypeScript
import * as React from 'react';
import type { ProgressGradient, ProgressProps } from './progress';
interface CircleProps extends ProgressProps {
prefixCls: string;
children: React.ReactNode;
progressStatus: string;
strokeColor?: string | ProgressGradient;
}
declare const Circle: React.FC<CircleProps>;
export default Circle;