zuicon_material/icons/
terrain_two_tone.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(TerrainTwoTone)]
11pub fn terrain_two_tone(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("TerrainTwoTone"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M0 0h24v24H0V0z" fill="none"/><path d="M5 16h3.04l-1.52-2.03z" opacity=".3"/><path d="M9.78 11.63l1.25 1.67L14 9.33 19 16h-8.46l-4.01-5.37L1 18h22L14 6l-4.22 5.63zM5 16l1.52-2.03L8.04 16H5z"/>
20 </SvgIcon>
21 }
22}