zuicon_material/icons/
person_remove_sharp.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(PersonRemoveSharp)]
11pub fn person_remove_sharp(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("PersonRemoveSharp"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M14,8c0-2.21-1.79-4-4-4S6,5.79,6,8s1.79,4,4,4S14,10.21,14,8z M17,10v2h6v-2H17z M2,18v2h16v-2c0-2.66-5.33-4-8-4 S2,15.34,2,18z"/>
20 </SvgIcon>
21 }
22}