zuicon_material/icons/
arrow_drop_up_rounded.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(ArrowDropUpRounded)]
11pub fn arrow_drop_up_rounded(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("ArrowDropUpRounded"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M0 0h24v24H0V0z" fill="none"/><path d="M8.71 12.29L11.3 9.7c.39-.39 1.02-.39 1.41 0l2.59 2.59c.63.63.18 1.71-.71 1.71H9.41c-.89 0-1.33-1.08-.7-1.71z"/>
20 </SvgIcon>
21 }
22}