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

Class FormfieldProps

src/form_field.rs:15–25  ·  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/formfield#propertiesattributes)
14#[derive(Clone, PartialEq, Properties)]
15pub 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)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected