zuicon_material/icons/
home_repair_service.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(HomeRepairService)]
11pub fn home_repair_service(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("HomeRepairService"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M20,8h-3V6c0-1.1-0.9-2-2-2H9C7.9,4,7,4.9,7,6v2H4c-1.1,0-2,0.9-2,2v4h4v-2h2v2h8v-2h2v2h4v-4C22,8.9,21.1,8,20,8z M15,8 H9V6h6V8z"/>
20 </SvgIcon>
21 }
22}