| 13 | /// [Documentation for properties](https://github.com/material-components/material-components-web-components/tree/master/packages/linear-progress#propertiesattributes) |
| 14 | #[derive(Clone, PartialEq, Properties)] |
| 15 | pub struct LinearProgressProps { |
| 16 | #[prop_or_default] |
| 17 | pub indeterminate: bool, |
| 18 | #[prop_or_default] |
| 19 | pub progress: f32, |
| 20 | #[prop_or_default] |
| 21 | pub buffer: f32, |
| 22 | #[prop_or_default] |
| 23 | pub reverse: bool, |
| 24 | #[prop_or_default] |
| 25 | pub closed: bool, |
| 26 | } |
| 27 | |
| 28 | impl Component for LinearProgress { |
| 29 | type Message = (); |
nothing calls this directly
no outgoing calls
no test coverage detected