zuicon_material/icons/
subdirectory_arrow_right_rounded.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(SubdirectoryArrowRightRounded)]
11pub fn subdirectory_arrow_right_rounded(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("SubdirectoryArrowRightRounded"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M24 24H0V0h24v24z" fill="none" opacity=".87"/><path d="M18.29 15.71l-4.58 4.58c-.39.39-1.03.39-1.42 0-.39-.39-.39-1.03 0-1.42L15.17 16H5c-.55 0-1-.45-1-1V5c0-.55.45-1 1-1s1 .45 1 1v9h9.17l-2.88-2.87c-.39-.39-.39-1.03 0-1.42.39-.39 1.03-.39 1.42 0l4.58 4.58c.39.39.39 1.03 0 1.42z"/>
20 </SvgIcon>
21 }
22}