interface CircularProgressIndicatorProps {
    className?: string;
    value?: number;
    variant?: "indeterminate" | "determinate";
}

Properties

className?: string

Custom class name

value?: number

Value for determinate variant, out of 100

variant?: "indeterminate" | "determinate"

indeterminate - spins endlessly determinate - allows passing a value to configure it

Generated using TypeDoc