zuicon_material/icons/
attach_email_sharp.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(AttachEmailSharp)]
11pub fn attach_email_sharp(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("AttachEmailSharp"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M21,10V2H1v16h13v-5c0-1.66,1.34-3,3-3H21z M11,11L3,6V4l8,5l8-5v2L11,11z"/><path d="M21,14v4c0,1.1-0.9,2-2,2s-2-0.9-2-2v-4.5c0-0.28,0.22-0.5,0.5-0.5s0.5,0.22,0.5,0.5V18h2v-4.5c0-1.38-1.12-2.5-2.5-2.5 S15,12.12,15,13.5V18c0,2.21,1.79,4,4,4s4-1.79,4-4v-4H21z"/>
20 </SvgIcon>
21 }
22}