| 2 | import ReactToolbox from "../index"; |
| 3 | |
| 4 | export 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 | |
| 39 | interface ProgressBarProps extends ReactToolbox.Props { |
| 40 | /** |
nothing calls this directly
no outgoing calls
no test coverage detected