zuicon_material/icons/
install_desktop_two_tone.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(InstallDesktopTwoTone)]
11pub fn install_desktop_two_tone(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("InstallDesktopTwoTone"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M20,17H4V5h9V3H4C2.89,3,2,3.89,2,5v12c0,1.1,0.89,2,2,2h4v2h8v-2h4c1.1,0,2-0.9,2-2v-5.17l-2,2V17z"/>
20 </SvgIcon>
21 }
22}