zuicon_material/icons/
emoji_people_sharp.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(EmojiPeopleSharp)]
11pub fn emoji_people_sharp(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("EmojiPeopleSharp"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M15.89,8.11C15.5,7.72,14.83,7,13.53,7c-0.21,0-1.42,0-2.54,0C8.24,6.99,6,4.75,6,2H4c0,3.16,2.11,5.84,5,6.71V22h2v-6h2 v6h2V10.05L18.95,14l1.41-1.41L15.89,8.11z"/>
20 </SvgIcon>
21 }
22}