@quanxi/ui
Version:
全悉组件库
23 lines (22 loc) • 511 B
TypeScript
/// <reference types="react" />
import type { ProgressProps } from "./progress";
import "./style.scss";
interface CircleProps extends ProgressProps {
/**
* 圆弧的宽度
* @default 18
*/
strokeWidth?: number;
/**
* 圆弧末尾使用的形状
* @default butt
*/
strokeLinecap?: "butt" | "round";
/**
* 圆环大小
* @default 120
*/
size?: number;
}
declare function CircleCopy(props: CircleProps): JSX.Element;
export default CircleCopy;