soda-material
Version:
A React(>=18) component library that may follow [Material Design 3](https://m3.material.io/components) (a.k.a. Material You)
14 lines (13 loc) • 660 B
TypeScript
/// <reference types="react" />
import './progress-indicator.scss';
/**
* [notice]: This component has default `min-width: 5rem` and `width: 100%` for convenience.
* You can manually set style property to override it if needed.
* @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;
} & Omit<import("react").HTMLProps<HTMLElement>, "as" | "ref" | "value"> & import("react").RefAttributes<HTMLDivElement>>;