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