MCPcopy Index your code
hub / github.com/react-toolbox/react-toolbox / ProgressBarTheme

Interface ProgressBarTheme

components/progress_bar/index.d.ts:4–37  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2import ReactToolbox from "../index";
3
4export interface ProgressBarTheme {
5 /**
6 * Used to style the buffer element in the linear progress.
7 */
8 buffer?: string;
9 /**
10 * Used for the circle element in the circular progress.
11 */
12 circle?: string;
13 /**
14 * Used for the root element when the type is circular.
15 */
16 circular?: string;
17 /**
18 * Added to the root element if mode is indeterminate.
19 */
20 indeterminate?: string;
21 /**
22 * Used for the root element when the type is linear.
23 */
24 linear?: string;
25 /**
26 * Added to the root if the component is multicolor (circular).
27 */
28 multicolor?: string;
29 /**
30 * Used for the inner path in the circular progress.
31 */
32 path?: string;
33 /**
34 * Used to style the value element in the linear progress.
35 */
36 value?: string;
37}
38
39interface ProgressBarProps extends ReactToolbox.Props {
40 /**

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected