| 16 | /// [Documentation for properties](https://github.com/material-components/material-components-web-components/tree/master/packages/icon-button#propertiesattributes) |
| 17 | #[derive(Clone, PartialEq, Properties)] |
| 18 | pub struct IconButtonProps { |
| 19 | #[prop_or_default] |
| 20 | pub label: String, |
| 21 | #[prop_or_default] |
| 22 | pub icon: String, |
| 23 | #[prop_or_default] |
| 24 | pub disabled: bool, |
| 25 | #[prop_or_default] |
| 26 | pub children: Children, |
| 27 | } |
| 28 | |
| 29 | // label=props.label |
| 30 | // icon=props.icon |
nothing calls this directly
no outgoing calls
no test coverage detected