| 13 | /// [Documentation for properties](https://github.com/material-components/material-components-web-components/tree/master/packages/circular-progress#propertiesattributes) |
| 14 | #[derive(Clone, PartialEq, Properties)] |
| 15 | pub struct CircularProgressProps { |
| 16 | #[prop_or_default] |
| 17 | pub indeterminate: bool, |
| 18 | #[prop_or_default] |
| 19 | pub progress: f32, |
| 20 | #[prop_or_default] |
| 21 | pub density: u32, |
| 22 | #[prop_or_default] |
| 23 | pub closed: bool, |
| 24 | } |
| 25 | |
| 26 | // indeterminate?=to_option(props.indeterminate) |
| 27 | // progress=props.progress |
nothing calls this directly
no outgoing calls
no test coverage detected