1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
use wasm_bindgen::prelude::*;
use yew::prelude::*;
use yew::virtual_dom::AttrValue;
#[wasm_bindgen(module = "/build/mwc-icon-button.js")]
extern "C" {
#[derive(Debug)]
type IconButton;
#[wasm_bindgen(getter, static_method_of = IconButton)]
fn _dummy_loader() -> JsValue;
}
loader_hack!(IconButton);
#[derive(Debug, Properties, PartialEq, Clone)]
pub struct IconButtonProps {
#[prop_or_default]
pub label: Option<AttrValue>,
#[prop_or_default]
pub icon: Option<AttrValue>,
#[prop_or_default]
pub disabled: bool,
#[prop_or_default]
pub children: Children,
}
component!(
MatIconButton,
IconButtonProps,
|props: &IconButtonProps| {
html! {
<mwc-icon-button
label={props.label.clone()}
icon={props.icon.clone()}
disabled={props.disabled}
>{props.children.clone()}</mwc-icon-button>
}
},
IconButton,
"icon-button"
);