zuicon_material/icons/
swipe_up_alt_sharp.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(SwipeUpAltSharp)]
11pub fn swipe_up_alt_sharp(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("SwipeUpAltSharp"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M13,5.83l1.59,1.59L16,6l-4-4L8,6l1.41,1.41L11,5.83v4.27c-2.28,0.46-4,2.48-4,4.9c0,2.76,2.24,5,5,5s5-2.24,5-5 c0-2.42-1.72-4.44-4-4.9V5.83z"/>
20 </SvgIcon>
21 }
22}