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