zuicon_material/icons/
edgesensor_high_sharp.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(EdgesensorHighSharp)]
11pub fn edgesensor_high_sharp(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("EdgesensorHighSharp"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M0,0h24v24H0V0z" fill="none"/><path d="M3,7h2v7H3V7z M0,10h2v7H0V10z M22,7h2v7h-2V7z M19,10h2v7h-2V10z M18,2H6v20h12V2z M16,17H8V7h8V17z"/>
20 </SvgIcon>
21 }
22}