zuicon_material/icons/
local_parking_sharp.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(LocalParkingSharp)]
11pub fn local_parking_sharp(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("LocalParkingSharp"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M0 0h24v24H0V0z" fill="none"/><path d="M13 3H6v18h4v-6h3c3.31 0 6-2.69 6-6s-2.69-6-6-6zm.2 8H10V7h3.2c1.1 0 2 .9 2 2s-.9 2-2 2z"/>
20 </SvgIcon>
21 }
22}