zuicon_material/icons/
military_tech_sharp.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(MilitaryTechSharp)]
11pub fn military_tech_sharp(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("MilitaryTechSharp"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M17,11V2H7v9l4.66,2.8l-0.99,2.34l-3.41,0.29l2.59,2.24L9.07,22L12,20.23L14.93,22l-0.78-3.33l2.59-2.24l-3.41-0.29 l-0.99-2.34L17,11z M13,12.23l-1,0.6l-1-0.6V3h2V12.23z"/>
20 </SvgIcon>
21 }
22}