zuicon_material/icons/
man_2_rounded.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(Man2Rounded)]
11pub fn man_2_rounded(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("Man2Rounded"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M14,7h-4C8.9,7,8,7.9,8,9v5c0,0.55,0.45,1,1,1h1.5v5.5c0,0.83,0.67,1.5,1.5,1.5h0c0.83,0,1.5-0.67,1.5-1.5V15H15 c0.55,0,1-0.45,1-1V9C16,7.9,15.1,7,14,7z"/>
20 </SvgIcon>
21 }
22}