zuicon_material/icons/
airline_stops_outlined.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(AirlineStopsOutlined)]
11pub fn airline_stops_outlined(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("AirlineStopsOutlined"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M19,8.7c-2.46,1.5-5.5,4.17-6,8.3h2v2H9v-2h2c-0.5-4.5-4.37-8-9-8V7c4.39,0,8.22,2.55,10,6.3c1.38-2.97,3.86-5.03,5.96-6.31 L14,7V5h7v7h-2V8.7z"/>
20 </SvgIcon>
21 }
22}