zuicon_material/icons/
signal_cellular_null_rounded.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(SignalCellularNullRounded)]
11pub fn signal_cellular_null_rounded(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("SignalCellularNullRounded"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M0 0h24v24H0V0z" fill="none"/><path d="M20 6.83V19c0 .55-.45 1-1 1H6.83L20 6.83m.29-3.12L3.71 20.29c-.63.63-.19 1.71.7 1.71H20c1.1 0 2-.9 2-2V4.41c0-.89-1.08-1.33-1.71-.7z"/>
20 </SvgIcon>
21 }
22}