zuicon_material/icons/
mobile_off_sharp.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(MobileOffSharp)]
11pub fn mobile_off_sharp(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("MobileOffSharp"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M0 0h24v24H0V0z" fill="none"/><path d="M17 5v8.61l2 2V1H5v.61L8.39 5zM2.9 2.35L1.49 3.76 5 7.27V23h14v-1.73l1.7 1.7 1.41-1.41L2.9 2.35zM7 19V9.27L16.73 19H7z"/>
20 </SvgIcon>
21 }
22}