zuicon_material/icons/
thumbs_up_down_sharp.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(ThumbsUpDownSharp)]
11pub fn thumbs_up_down_sharp(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("ThumbsUpDownSharp"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M0 0h24v24H0V0zm0 0h24v24H0V0z" fill="none"/><path d="M12 5H5.82l.78-3.78L5.38 0 0 5.38V14h9.24L12 7.54zm2.76 5L12 16.46V19h6.18l-.78 3.78L18.62 24 24 18.62V10z"/>
20 </SvgIcon>
21 }
22}