zuicon_material/icons/
signal_wifi_statusbar_null_rounded.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(SignalWifiStatusbarNullRounded)]
11pub fn signal_wifi_statusbar_null_rounded(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("SignalWifiStatusbarNullRounded"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M0,0h24v24H0V0z" fill="none"/><path d="M12,4C7.7,4,3.78,5.6,0.79,8.24C0.35,8.63,0.32,9.3,0.73,9.71l10.56,10.58c0.39,0.39,1.02,0.39,1.42,0L23.27,9.71 c0.41-0.41,0.38-1.08-0.06-1.47C20.22,5.6,16.3,4,12,4z M2.92,9.07C5.51,7.08,8.67,6,12,6c3.33,0,6.49,1.08,9.08,3.07L12,18.17 L2.92,9.07z"/>
20 </SvgIcon>
21 }
22}