zuicon_material/icons/
signal_wifi_4_bar_sharp.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(SignalWifi4BarSharp)]
11pub fn signal_wifi_4_bar_sharp(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("SignalWifi4BarSharp"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M0 0h24v24H0V0z" fill="none"/><path d="M12.01 21.49L23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7l11.63 14.49.01.01.01-.01z"/>
20 </SvgIcon>
21 }
22}