zuicon_material/icons/
all_inbox_sharp.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(AllInboxSharp)]
11pub fn all_inbox_sharp(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("AllInboxSharp"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M0 0h24v24H0V0z" fill="none"/><path d="M21 3H3v11h18V3zm-2 6h-4c0 1.62-1.38 3-3 3s-3-1.38-3-3H5V5h14v4zm-4 7h6v5H3v-5h6c0 1.66 1.34 3 3 3s3-1.34 3-3z"/>
20 </SvgIcon>
21 }
22}