zuicon_material/icons/
signal_cellular_0_bar_rounded.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(SignalCellular0BarRounded)]
11pub fn signal_cellular_0_bar_rounded(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("SignalCellular0BarRounded"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M0,0h24v24H0V0z" fill="none"/><path d="M4.41,22H21c0.55,0,1-0.45,1-1V4.41c0-0.89-1.08-1.34-1.71-0.71L3.71,20.29C3.08,20.92,3.52,22,4.41,22z M20,20H6.83 L20,6.83V20z"/>
20 </SvgIcon>
21 }
22}