zuicon_material/icons/
polyline_outlined.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(PolylineOutlined)]
11pub fn polyline_outlined(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("PolylineOutlined"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M15,16v1.26l-6-3v-3.17L11.7,8H16V2h-6v4.9L7.3,10H3v6h5l7,3.5V22h6v-6H15z M12,4h2v2h-2V4z M7,14H5v-2h2V14z M19,20h-2v-2 h2V20z"/>
20 </SvgIcon>
21 }
22}