UNPKG

soda-material

Version:

A React(>=18) component library that may follow [Material Design 3](https://m3.material.io/components) (a.k.a. Material You)

16 lines (15 loc) 501 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; /** * @default 36px */ size?: string | undefined; } & import("react").RefAttributes<HTMLDivElement>>;