zuicon_material/icons/
lan_two_tone.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(LanTwoTone)]
11pub fn lan_two_tone(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("LanTwoTone"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M10,7V4h4v3H10z M9,17v3H5v-3H9z M19,17v3h-4v-3H19z" opacity=".3"/><path d="M13,22h8v-7h-3v-4h-5V9h3V2H8v7h3v2H6v4H3v7h8v-7H8v-2h8v2h-3V22z M10,7V4h4v3H10z M9,17v3H5v-3H9z M19,17v3h-4v-3H19z"/>
20 </SvgIcon>
21 }
22}