zuicon_material/icons/
fit_screen_sharp.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(FitScreenSharp)]
11pub fn fit_screen_sharp(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("FitScreenSharp"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M0,0h24v24H0V0z" fill="none"/><path d="M17,4h5v5h-2V6h-3V4z M4,9V6h3V4H2v5H4z M20,15v3h-3v2h5v-5H20z M7,18H4v-3H2v5h5V18z M18,8H6v8h12V8z"/>
20 </SvgIcon>
21 }
22}