zuicon_material/icons/
business_center_sharp.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(BusinessCenterSharp)]
11pub fn business_center_sharp(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("BusinessCenterSharp"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M0 0h24v24H0V0z" fill="none"/><path d="M10 16v-1H3.01v6H21v-6h-7v1h-4zm12-9h-6V5l-2-2h-4L8 5v2H2v7h8v-2h4v2h8V7zm-8 0h-4V5h4v2z"/>
20 </SvgIcon>
21 }
22}