zuicon_material/icons/
thumb_down_off_alt_sharp.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(ThumbDownOffAltSharp)]
11pub fn thumb_down_off_alt_sharp(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("ThumbDownOffAltSharp"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M1,11.6V16h8.31l-1.12,5.38L9.83,23L17,15.82V3H4.69L1,11.6z M15,5v9.99l-4.34,4.35l0.61-2.93l0.5-2.41H9.31H3v-1.99 L6.01,5H15z"/>
20 </SvgIcon>
21 }
22}