zuicon_material/icons/
arrow_back_ios_outlined.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(ArrowBackIosOutlined)]
11pub fn arrow_back_ios_outlined(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("ArrowBackIosOutlined"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M0 0h24v24H0V0z" fill="none" opacity=".87"/><path d="M17.51 3.87L15.73 2.1 5.84 12l9.9 9.9 1.77-1.77L9.38 12l8.13-8.13z"/>
20 </SvgIcon>
21 }
22}