zuicon_material/icons/
add_location_sharp.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(AddLocationSharp)]
11pub fn add_location_sharp(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("AddLocationSharp"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M13,6h-2v3H8v2h3v3h2v-3h3V9h-3V6z M12,2c4.2,0,8,3.22,8,8.2c0,3.32-2.67,7.25-8,11.8 c-5.33-4.55-8-8.48-8-11.8C4,5.22,7.8,2,12,2z"/>
20 </SvgIcon>
21 }
22}