zuicon_material/icons/
signal_cellular_alt_2_bar_rounded.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(SignalCellularAlt2BarRounded)]
11pub fn signal_cellular_alt_2_bar_rounded(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("SignalCellularAlt2BarRounded"),
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 M12.5,20 c-0.83,0-1.5-0.67-1.5-1.5v-8C11,9.67,11.67,9,12.5,9S14,9.67,14,10.5v8C14,19.33,13.33,20,12.5,20z"/>
20 </SvgIcon>
21 }
22}