zuicon_mdl2/
device_bug.rs1use yew::prelude::{html, Component, Context, Html, Properties};
8
9pub struct DeviceBug {}
10
11#[derive(Properties, Debug, Clone, PartialEq, Eq)]
12pub struct Props {
13 #[prop_or_default]
14 pub class: Option<&'static str>,
15
16 #[prop_or_default]
17 pub width: Option<&'static str>,
18
19 #[prop_or_default]
20 pub height: Option<&'static str>,
21
22 #[prop_or_default]
23 pub color: Option<&'static str>,
24
25 #[prop_or_default]
26 pub fill: Option<&'static str>,
27
28 #[prop_or_default]
29 pub spin: bool,
30
31 #[prop_or_default]
32 pub rotate: i16,
33}
34
35impl Component for DeviceBug {
36 type Properties = Props;
37 type Message = ();
38
39 fn create(_ctx: &Context<Self>) -> Self {
40 Self {}
41 }
42
43 fn view(&self, ctx: &Context<Self>) -> Html {
44 let props = ctx.props();
45 let mut style = String::new();
47 if props.rotate != 0 {
48 style += &format!("transform: rotate({}deg);", props.rotate);
49 }
50 html! {
51 <svg
52 xmlns={ "http://www.w3.org/2000/svg" }
53 class={ props.class.unwrap_or("") }
54 width={ props.width.unwrap_or("16") }
55 height={ props.height.unwrap_or("16") }
56 focusable={ "false" }
57 data-icon={ "DeviceBug" }
58 viewBox={ "0 0 16 16" }
59 fill={ props.fill.unwrap_or("currentColor") }
60 style={ style }
61 >
62 <path d="M1792 1627v74l237 238-90 90-174-173q-19 44-49 79t-68 60-83 39-93 14q-48 0-92-13t-83-39-69-61-49-79l-174 173-90-90 237-238v-48q0-39 2-73t10-68 26-65 47-64q-21-48-21-103 0-46 16-89t46-78l-107-108 90-90 124 124q42-15 87-15t87 15l124-124 90 90-107 108q30 35 46 78t16 89q0 55-21 103 37 41 58 89l174-173 90 90-237 238zm-192-347q0-27-10-50t-27-40-41-28-50-10q-27 0-50 10t-40 27-28 41-10 50q0 13 3 26 29-14 61-20t64-6q32 0 64 6t61 20q3-13 3-26zm80 448v-128q0-43-16-81t-45-66-66-44-81-17q-43 0-81 16t-66 45-44 66-17 81v128q0 43 16 81t45 66 66 44 81 17q43 0 81-16t66-45 44-66 17-81zm-656-64H640v-128h256v-128H0V256h1920v512h-128V384H128v896h896v384z" />
63 </svg>
64 }
65 }
66}