zuicon_material/icons/
directions_off_sharp.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(DirectionsOffSharp)]
11pub fn directions_off_sharp(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("DirectionsOffSharp"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="m1.39 4.22 3.99 3.99L1.59 12l10.42 10.4 3.79-3.79 3.99 3.99 1.41-1.41L2.81 2.81 1.39 4.22zm8.6 8.6V15h-2v-4.18l2 2z"/>
20 </SvgIcon>
21 }
22}