zuicon_material/icons/
directions_sharp.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(DirectionsSharp)]
11pub fn directions_sharp(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("DirectionsSharp"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M0 0h24v24H0V0z" fill="none"/><path d="M22.41 12 12 1.59 1.59 11.99 12 22.41 22.41 12zM14 14.5V12h-4v3H8v-5h6V7.5l3.5 3.5-3.5 3.5z"/>
20 </SvgIcon>
21 }
22}