zuicon_material/icons/
person_add_alt_1_sharp.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(PersonAddAlt1Sharp)]
11pub fn person_add_alt_1_sharp(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("PersonAddAlt1Sharp"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M13,8c0-2.21-1.79-4-4-4S5,5.79,5,8s1.79,4,4,4S13,10.21,13,8z M15,10v2h3v3h2v-3h3v-2h-3V7h-2v3H15z M1,18v2h16v-2 c0-2.66-5.33-4-8-4S1,15.34,1,18z"/>
20 </SvgIcon>
21 }
22}