| 13 | /// [Documentation for properties](https://github.com/material-components/material-components-web-components/tree/master/packages/formfield#propertiesattributes) |
| 14 | #[derive(Clone, PartialEq, Properties)] |
| 15 | pub struct FormfieldProps { |
| 16 | pub children: Children, |
| 17 | #[prop_or_default] |
| 18 | pub label: String, |
| 19 | #[prop_or_default] |
| 20 | pub align_end: bool, |
| 21 | #[prop_or_default] |
| 22 | pub space_between: bool, |
| 23 | #[prop_or_default] |
| 24 | pub nowrap: bool, |
| 25 | } |
| 26 | |
| 27 | // label=props.label |
| 28 | // alignEnd?=to_option(props.align_end) |
nothing calls this directly
no outgoing calls
no test coverage detected