antd
Version:
An enterprise-class UI design language and React components implementation
11 lines (10 loc) • 349 B
TypeScript
import * as React from 'react';
import type { ProgressGradient, ProgressProps } from './progress';
export interface CircleProps extends ProgressProps {
prefixCls: string;
children: React.ReactNode;
progressStatus: string;
strokeColor?: string | ProgressGradient;
}
declare const Circle: React.FC<CircleProps>;
export default Circle;