zuicon_material/icons/
thumb_down_alt_sharp.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(ThumbDownAltSharp)]
11pub fn thumb_down_alt_sharp(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("ThumbDownAltSharp"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M0 0h24v24H0V0z" fill="none" opacity=".87"/><path d="M1 11.6V16h8.31l-1.12 5.38L9.83 23 17 15.82V3H4.69zM19 3h4v12h-4z"/>
20 </SvgIcon>
21 }
22}