zuicon_material/icons/
directions_bus_filled_rounded.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(DirectionsBusFilledRounded)]
11pub fn directions_bus_filled_rounded(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("DirectionsBusFilledRounded"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M12,2C8,2,4,2.5,4,6v9.5c0,0.95,0.38,1.81,1,2.44v1.56C5,20.33,5.67,21,6.5,21h0 C7.33,21,8,20.33,8,19.5V19h8v0.5c0,0.82,0.67,1.5,1.5,1.5h0c0.82,0,1.5-0.67,1.5-1.5v-1.56c0.62-0.63,1-1.49,1-2.44V6 C20,2.5,16.42,2,12,2z M8.5,16C7.67,16,7,15.33,7,14.5S7.67,13,8.5,13s1.5,0.67,1.5,1.5S9.33,16,8.5,16z M15.5,16 c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5S16.33,16,15.5,16z M18,10H6V7h12V10z" enable-background="new"/>
20 </SvgIcon>
21 }
22}