zuicon_material/icons/
signal_cellular_alt_1_bar_rounded.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(SignalCellularAlt1BarRounded)]
11pub fn signal_cellular_alt_1_bar_rounded(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("SignalCellularAlt1BarRounded"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M6.5,20C5.67,20,5,19.33,5,18.5v-3C5,14.67,5.67,14,6.5,14S8,14.67,8,15.5v3C8,19.33,7.33,20,6.5,20z"/>
20 </SvgIcon>
21 }
22}