zuicon_material/icons/
volunteer_activism_sharp.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(VolunteerActivismSharp)]
11pub fn volunteer_activism_sharp(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("VolunteerActivismSharp"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M16,3.25C16.65,2.49,17.66,2,18.7,2C20.55,2,22,3.45,22,5.3c0,2.27-2.91,4.9-6,7.7c-3.09-2.81-6-5.44-6-7.7 C10,3.45,11.45,2,13.3,2C14.34,2,15.35,2.49,16,3.25z"/>
20 </SvgIcon>
21 }
22}