@spicy-ui/core
Version:
A themable and extensible React UI library, ready to use out of the box
16 lines (15 loc) • 557 B
TypeScript
import * as React from 'react';
import { AsProp, ChildrenProp, HTMLAttributes } from '../../types';
export interface CircularProgressProps extends HTMLAttributes, AsProp, ChildrenProp {
angle?: number;
color?: string;
isCapRound?: boolean;
isIndeterminate?: boolean;
max?: number;
min?: number;
size?: string;
thickness?: number;
trackColor?: string;
value?: number;
}
export declare const CircularProgress: React.ForwardRefExoticComponent<CircularProgressProps & React.RefAttributes<HTMLDivElement>>;