zuicon_material/icons/
hourglass_empty_two_tone.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(HourglassEmptyTwoTone)]
11pub fn hourglass_empty_two_tone(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("HourglassEmptyTwoTone"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M0 0h24v24H0V0z" fill="none"/><path d="M18 2H6v6h.01L6 8.01 10 12l-4 4 .01.01H6V22h12v-5.99h-.01L18 16l-4-4 4-3.99-.01-.01H18V2zm-2 14.5V20H8v-3.5l4-4 4 4zm0-9l-4 4-4-4V4h8v3.5z"/>
20 </SvgIcon>
21 }
22}