zuicon_material/icons/
perm_scan_wifi_sharp.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(PermScanWifiSharp)]
11pub fn perm_scan_wifi_sharp(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("PermScanWifiSharp"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M0 0h24v24H0V0z" fill="none"/><path d="M12 3C6.95 3 3.15 4.85 0 7.23L12 22 24 7.25C20.85 4.87 17.05 3 12 3zm1 13h-2v-6h2v6zm-2-8V6h2v2h-2z"/>
20 </SvgIcon>
21 }
22}