| 17 | /// [Documentation for properties](https://github.com/material-components/material-components-web-components/tree/master/packages/fab#propertiesattributes) |
| 18 | #[derive(Clone, PartialEq, Properties)] |
| 19 | pub 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 |
nothing calls this directly
no outgoing calls
no test coverage detected