zuicon_material/icons/
center_focus_strong_sharp.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(CenterFocusStrongSharp)]
11pub fn center_focus_strong_sharp(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("CenterFocusStrongSharp"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M0 0h24v24H0V0z" fill="none"/><path d="M12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm-7 7H3v6h6v-2H5v-4zM5 5h4V3H3v6h2V5zm16-2h-6v2h4v4h2V3zm-2 16h-4v2h6v-6h-2v4z"/>
20 </SvgIcon>
21 }
22}