| 31 | /// [Documentation for properties](https://github.com/material-components/material-components-web-components/tree/master/packages/button#propertiesattributes) |
| 32 | #[derive(Clone, PartialEq, Properties)] |
| 33 | pub struct CardProps { |
| 34 | pub label: String, |
| 35 | #[prop_or_default] |
| 36 | pub icon: Option<String>, |
| 37 | #[prop_or_default] |
| 38 | pub raised: bool, |
| 39 | #[prop_or_default] |
| 40 | pub unelevated: bool, |
| 41 | #[prop_or_default] |
| 42 | pub outlined: bool, |
| 43 | #[prop_or_default] |
| 44 | pub dense: bool, |
| 45 | #[prop_or_default] |
| 46 | pub disabled: bool, |
| 47 | #[prop_or_default] |
| 48 | pub trailing_icon: bool, |
| 49 | // #[prop_or_default] |
| 50 | // pub onsignal: Callback<()>, |
| 51 | } |
| 52 | |
| 53 | // label=props.label |
| 54 | // icon?=props.icon.as_ref() |
nothing calls this directly
no outgoing calls
no test coverage detected