1use yew::prelude::{html, Component, Context, Html, Properties};
8
9pub struct BugSolid {}
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 BugSolid {
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={ "BugSolid" }
58 viewBox={ "0 0 16 16" }
59 fill={ props.fill.unwrap_or("currentColor") }
60 style={ style }
61 >
62 <path d="M704 448q0-72 30-135L595 173l90-90 126 126q45-39 99-60t114-21q60 0 114 21t99 60l126-126 90 90-139 140q30 63 30 135 0 13-1 25t-4 25q-75-32-154-49t-161-17q-81 0-160 17t-155 49q-2-12-3-24t-2-26zm896 448q66 0 124 25t101 69 69 102 26 124v192h-128v-192q0-34-11-65t-33-57-49-43-63-24q19 62 24 125t5 128v72q0 36-1 72l3 4q61 66 93 138t32 163q0 85-32 162t-93 138l-90-90q42-42 64-97t23-114q0-67-29-128-32 100-92 182t-140 142-177 91-202 33q-105 0-202-32t-177-92-140-141-92-183q-29 61-29 128 0 59 22 114t65 97l-90 90q-60-60-92-137t-33-163q0-91 32-163t93-138l3-4v-72q0-36-1-72 0-64 5-127t24-126q-34 6-62 23t-50 43-32 57-12 66v192H128v-192q0-66 25-124t68-101 102-69 125-26h22q40-69 97-128-65-2-121-28t-99-69-66-100-25-123V256h128v192q0 40 15 75t41 61 61 41 75 15h169q133-64 279-64t279 64h169q40 0 75-15t61-41 41-61 15-75V256h128v192q0 65-24 122t-67 101-98 69-122 28q57 59 97 128h22z" />
63 </svg>
64 }
65 }
66}