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