zuicon_material/icons/
arrow_left_rounded.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(ArrowLeftRounded)]
11pub fn arrow_left_rounded(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("ArrowLeftRounded"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M24 0v24H0V0h24z" fill="none" opacity=".87"/><path d="M12.29 8.71L9.7 11.3c-.39.39-.39 1.02 0 1.41l2.59 2.59c.63.63 1.71.18 1.71-.71V9.41c0-.89-1.08-1.33-1.71-.7z"/>
20 </SvgIcon>
21 }
22}