UNPKG

@amaui/ui-react

Version:
17 lines (16 loc) 504 B
import React from 'react'; import { IBaseElement, IColor, IPropsAny, ISize, ITonal } from '../types'; export interface IRoundProgress extends IBaseElement { tonal?: ITonal; color?: IColor; size?: ISize; version?: 'determinate' | 'indeterminate'; value?: number; noShrink?: boolean; thickness?: number; rounded?: boolean; pathProps?: IPropsAny; pathBackgroundProps?: IPropsAny; } declare const RoundProgress: React.FC<IRoundProgress>; export default RoundProgress;