zuicon_material/icons/
screen_rotation_alt_sharp.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(ScreenRotationAltSharp)]
11pub fn screen_rotation_alt_sharp(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("ScreenRotationAltSharp"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M4,7.59l6.41-6.41L20.24,11h-2.83L10.4,4L5.41,9H8v2H2V5h2V7.59z M20,19h2v-6h-6v2h2.59l-4.99,5l-7.01-7H3.76l9.83,9.83 L20,16.41V19z"/>
20 </SvgIcon>
21 }
22}