zuicon_material/icons/
keyboard_arrow_down_rounded.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(KeyboardArrowDownRounded)]
11pub fn keyboard_arrow_down_rounded(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("KeyboardArrowDownRounded"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M8.12 9.29 12 13.17l3.88-3.88c.39-.39 1.02-.39 1.41 0 .39.39.39 1.02 0 1.41l-4.59 4.59c-.39.39-1.02.39-1.41 0L6.7 10.7c-.39-.39-.39-1.02 0-1.41.39-.38 1.03-.39 1.42 0z"/>
20 </SvgIcon>
21 }
22}