zuicon_material/icons/
arrow_back_ios_new_rounded.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(ArrowBackIosNewRounded)]
11pub fn arrow_back_ios_new_rounded(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("ArrowBackIosNewRounded"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M16.88,2.88L16.88,2.88c-0.49-0.49-1.28-0.49-1.77,0l-8.41,8.41c-0.39,0.39-0.39,1.02,0,1.41l8.41,8.41 c0.49,0.49,1.28,0.49,1.77,0l0,0c0.49-0.49,0.49-1.28,0-1.77L9.54,12l7.35-7.35C17.37,4.16,17.37,3.37,16.88,2.88z"/>
20 </SvgIcon>
21 }
22}