zuicon_material/icons/
signal_cellular_off.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(SignalCellularOff)]
11pub fn signal_cellular_off(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("SignalCellularOff"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M0 0h24v24H0z" fill="none"/><path d="M21 1l-8.59 8.59L21 18.18V1zM4.77 4.5L3.5 5.77l6.36 6.36L1 21h17.73l2 2L22 21.73 4.77 4.5z"/>
20 </SvgIcon>
21 }
22}