zuicon_material/icons/
person_add_alt_1_rounded.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(PersonAddAlt1Rounded)]
11pub fn person_add_alt_1_rounded(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("PersonAddAlt1Rounded"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M9,14c-2.67,0-8,1.34-8,4v1c0,0.55,0.45,1,1,1h14c0.55,0,1-0.45,1-1v-1C17,15.34,11.67,14,9,14z"/>
20 </SvgIcon>
21 }
22}