zuicon_material/icons/
arrow_drop_down_rounded.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(ArrowDropDownRounded)]
11pub fn arrow_drop_down_rounded(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("ArrowDropDownRounded"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M0 0h24v24H0V0z" fill="none"/><path d="M8.71 11.71l2.59 2.59c.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}