use yew::prelude::{html, Component, Context, Html, Properties};
pub struct LightWeight {}
#[derive(Properties, Debug, Clone, PartialEq, Eq)]
pub struct Props {
#[prop_or_default]
pub class: Option<&'static str>,
#[prop_or_default]
pub width: Option<&'static str>,
#[prop_or_default]
pub height: Option<&'static str>,
#[prop_or_default]
pub color: Option<&'static str>,
#[prop_or_default]
pub fill: Option<&'static str>,
#[prop_or_default]
pub spin: bool,
#[prop_or_default]
pub rotate: i16,
}
impl Component for LightWeight {
type Properties = Props;
type Message = ();
fn create(_ctx: &Context<Self>) -> Self {
Self {}
}
fn view(&self, ctx: &Context<Self>) -> Html {
let props = ctx.props();
let mut style = String::new();
if props.rotate != 0 {
style += &format!("transform: rotate({}deg);", props.rotate);
}
html! {
<svg
xmlns={ "http://www.w3.org/2000/svg" }
class={ props.class.unwrap_or("") }
width={ props.width.unwrap_or("16") }
height={ props.height.unwrap_or("16") }
focusable={ "false" }
data-icon={ "LightWeight" }
viewBox={ "0 0 16 16" }
fill={ props.fill.unwrap_or("currentColor") }
style={ style }
>
<path d="M1457 1317q0 111-37 199t-104 149-157 94-199 33H512V128h438q89 0 167 24t136 73 91 121 34 166q0 72-19 136t-57 116-92 90-124 61v4q84 9 152 40t117 82 75 120 27 156zM627 234v644h232q81 0 153-21t127-63 87-108 33-153q0-84-26-141t-74-93-113-50-142-15H627zm713 1092q0-104-40-171t-105-105-150-53-173-15H627v706h309q88 0 162-21t128-65 84-113 30-163z" />
</svg>
}
}
}