zuicon_material/icons/
u_turn_left_sharp.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(UTurnLeftSharp)]
11pub fn u_turn_left_sharp(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("UTurnLeftSharp"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M18,9v12h-2V9c0-2.21-1.79-4-4-4S8,6.79,8,9v4.17l1.59-1.59L11,13l-4,4l-4-4l1.41-1.41L6,13.17V9c0-3.31,2.69-6,6-6 S18,5.69,18,9z"/>
20 </SvgIcon>
21 }
22}