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) • 431 B
TypeScript
/// <reference types="react" />
import './progress-indicator.scss';
/**
* @specs https://m3.material.io/components/progress-indicators/specs#efada034-defe-401e-803a-e6ea2833a396
*/
export declare const LinearProgressIndicator: import("react").ForwardRefExoticComponent<{
/**
* Between 0 and 1, if is unset, act as undeterminate
*/
value?: number | undefined;
} & import("react").RefAttributes<HTMLDivElement>>;