zuicon_material/icons/
dashboard_customize_sharp.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(DashboardCustomizeSharp)]
11pub fn dashboard_customize_sharp(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("DashboardCustomizeSharp"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M0,0h24v24H0V0z" fill="none"/><path d="M3,3h8v8H3V3z M13,3h8v8h-8V3z M3,13h8v8H3V13z M18,13h-2v3h-3v2h3v3h2v-3h3v-2h-3V13z"/>
20 </SvgIcon>
21 }
22}