MCPcopy Create free account
hub / github.com/angular-rust/yew-components / CircularProgressProps

Class CircularProgressProps

src/circular_progress.rs:15–24  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

13/// [Documentation for properties](https://github.com/material-components/material-components-web-components/tree/master/packages/circular-progress#propertiesattributes)
14#[derive(Clone, PartialEq, Properties)]
15pub 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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected