zuicon_material/icons/
bungalow_outlined.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(BungalowOutlined)]
11pub fn bungalow_outlined(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("BungalowOutlined"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M13,14h-2v-2h2V14z M18.1,16.56L17,14.79V21H7v-6.2l-1.1,1.76L4.2,15.5L12,3l7.8,12.5L18.1,16.56z M15,11.59l-3-4.8l-3,4.8 V19h2v-3h2v3h2V11.59z"/>
20 </SvgIcon>
21 }
22}