zuicon_material/icons/
warehouse_two_tone.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(WarehouseTwoTone)]
11pub fn warehouse_two_tone(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("WarehouseTwoTone"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M20,8.35V19h-2v-8H6v8H4V8.35l8-3.2L20,8.35z M22,21V7L12,3L2,7v14h6v-8h8v8H22z M11,19H9v2h2V19z M13,16h-2v2h2V16z M15,19h-2v2h2V19z"/>
20 </SvgIcon>
21 }
22}