zuicon_material/icons/
fullscreen_exit_sharp.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(FullscreenExitSharp)]
11pub fn fullscreen_exit_sharp(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("FullscreenExitSharp"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M0 0h24v24H0V0z" fill="none"/><path d="M5 16h3v3h2v-5H5v2zm3-8H5v2h5V5H8v3zm6 11h2v-3h3v-2h-5v5zm2-11V5h-2v5h5V8h-3z"/>
20 </SvgIcon>
21 }
22}