zuicon_material/icons/
turn_sharp_left_two_tone.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(TurnSharpLeftTwoTone)]
11pub fn turn_sharp_left_two_tone(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("TurnSharpLeftTwoTone"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M6,6.83L4.41,8.41L3,7l4-4l4,4L9.59,8.41L8,6.83V13h8c1.1,0,2,0.9,2,2v6h-2v-6H8c-1.1,0-2-0.9-2-2V6.83z"/>
20 </SvgIcon>
21 }
22}