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

Class DataTableProps

src/datatable.rs:23–41  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

21/// [Documentation for properties](https://github.com/material-components/material-components-web-components/tree/master/packages/button#propertiesattributes)
22#[derive(Clone, PartialEq, Properties)]
23pub struct DataTableProps {
24 pub label: String,
25 #[prop_or_default]
26 pub icon: Option<String>,
27 #[prop_or_default]
28 pub raised: bool,
29 #[prop_or_default]
30 pub unelevated: bool,
31 #[prop_or_default]
32 pub outlined: bool,
33 #[prop_or_default]
34 pub dense: bool,
35 #[prop_or_default]
36 pub disabled: bool,
37 #[prop_or_default]
38 pub trailing_icon: bool,
39 // #[prop_or_default]
40 // pub onsignal: Callback<()>,
41}
42
43// label=props.label
44// icon?=props.icon.as_ref()

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected