UNPKG

soda-material

Version:

A component library that may follow [material design 3](https://m3.material.io/components) (a.k.a. material you)

12 lines (11 loc) 433 B
/// <reference types="react" /> import './progress-indicator.scss'; /** * @specs https://m3.material.io/components/progress-indicators/specs#c1e48032-c857-45d6-af1d-c5b5b0022cf4 */ export declare const CircularProgressIndicator: import("react").ForwardRefExoticComponent<{ /** * Between 0 and 1, if is unset, act as undeterminate */ value?: number | undefined; } & import("react").RefAttributes<HTMLDivElement>>;