zuicon_material/icons/
grid_goldenratio_two_tone.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(GridGoldenratioTwoTone)]
11pub fn grid_goldenratio_two_tone(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("GridGoldenratioTwoTone"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M0,0h24v24H0V0z" fill="none"/><path d="M22,11V9h-7V2h-2v7h-2V2H9v7H2v2h7v2H2v2h7v7h2v-7h2v7h2v-7h7v-2h-7v-2H22z M13,13h-2v-2h2V13z"/>
20 </SvgIcon>
21 }
22}