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