zuicon_material/icons/
edgesensor_low_two_tone.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(EdgesensorLowTwoTone)]
11pub fn edgesensor_low_two_tone(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("EdgesensorLowTwoTone"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M0,0h24v24H0V0z" fill="none"/><path d="M16,2.01L8,2C6.9,2,6,2.9,6,4v16c0,1.1,0.9,2,2,2h8c1.1,0,2-0.9,2-2V4C18,2.9,17.1,2.01,16,2.01z M16,20H8v-1h8V20z M16,17H8V7h8V17z M16,5H8V4h8V5z"/>
20 </SvgIcon>
21 }
22}