zuicon_material/icons/
directions_railway_filled_sharp.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(DirectionsRailwayFilledSharp)]
11pub fn directions_railway_filled_sharp(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("DirectionsRailwayFilledSharp"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M12,2C8,2,4,2.5,4,6v9.5C4,17.43,5.57,19,7.5,19L6,20v1h12v-1l-1.5-1c1.93,0,3.5-1.57,3.5-3.5 V6C20,2.5,16.42,2,12,2z M12,16c-0.83,0-1.5-0.67-1.5-1.5S11.17,13,12,13s1.5,0.67,1.5,1.5S12.83,16,12,16z M18,10H6V7h12V10z" enable-background="new"/>
20 </SvgIcon>
21 }
22}