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