zuicon_material/icons/
transit_enterexit_two_tone.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(TransitEnterexitTwoTone)]
11pub fn transit_enterexit_two_tone(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("TransitEnterexitTwoTone"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M0 0h24v24H0V0z" fill="none"/><path d="M15.98 6L9 12.77V8H6v10h10v-3h-4.85L18 8.03z"/>
20 </SvgIcon>
21 }
22}