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

Class FabProps

src/fab.rs:19–34  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

17/// [Documentation for properties](https://github.com/material-components/material-components-web-components/tree/master/packages/fab#propertiesattributes)
18#[derive(Clone, PartialEq, Properties)]
19pub struct FabProps {
20 #[prop_or_default]
21 pub icon: String,
22 #[prop_or_default]
23 pub label: String,
24 #[prop_or_default]
25 pub mini: bool,
26 #[prop_or_default]
27 pub reduced_touch_target: bool,
28 #[prop_or_default]
29 pub extended: bool,
30 #[prop_or_default]
31 pub show_icon_at_end: bool,
32 #[prop_or_default]
33 pub children: Children,
34}
35
36// label=props.label
37// icon=props.icon

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected