zuicon_material/icons/
turn_sharp_right_outlined.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(TurnSharpRightOutlined)]
11pub fn turn_sharp_right_outlined(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("TurnSharpRightOutlined"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M18,6.83l1.59,1.59L21,7l-4-4l-4,4l1.41,1.41L16,6.83V13H8c-1.1,0-2,0.9-2,2v6h2v-6h8c1.1,0,2-0.9,2-2V6.83z"/>
20 </SvgIcon>
21 }
22}