import { ColorProp } from '../../types/color'; import { HTMLAttributes } from 'react'; export interface CircularProgressProps extends Pick, 'className' | 'style'> { color?: ColorProp; size?: number; thickness?: number; /** * Percentage value * Used when indeterminate is set to false */ value?: number; /** * Enable/Disable indeterminate progress state * @default true */ indeterminate?: boolean; /** * Show label in the middle of progress circle */ label?: any; hidden?: boolean; }