zuicon_material/icons/
image_aspect_ratio_sharp.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(ImageAspectRatioSharp)]
11pub fn image_aspect_ratio_sharp(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("ImageAspectRatioSharp"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M0 0h24v24H0z" fill="none"/><path d="M16 10h-2v2h2v-2zm0 4h-2v2h2v-2zm-8-4H6v2h2v-2zm4 0h-2v2h2v-2zm10-6H2v16h20V4zm-2 14H4V6h16v12z"/>
20 </SvgIcon>
21 }
22}