zuicon_material/icons/
dashboard_customize_outlined.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(DashboardCustomizeOutlined)]
11pub fn dashboard_customize_outlined(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("DashboardCustomizeOutlined"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M0,0h24v24H0V0z" fill="none"/><path d="M3,11h8V3H3V11z M5,5h4v4H5V5z"/><path d="M13,3v8h8V3H13z M19,9h-4V5h4V9z"/><path d="M3,21h8v-8H3V21z M5,15h4v4H5V15z"/>
20 </SvgIcon>
21 }
22}