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

Class LinearProgressProps

src/linear_progress.rs:15–26  ·  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/linear-progress#propertiesattributes)
14#[derive(Clone, PartialEq, Properties)]
15pub 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
28impl Component for LinearProgress {
29 type Message = ();

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected