zuicon_material/icons/
mark_unread_chat_alt_outlined.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(MarkUnreadChatAltOutlined)]
11pub fn mark_unread_chat_alt_outlined(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("MarkUnreadChatAltOutlined"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M20,16H4V4h10.1c-0.08-0.39-0.18-1.11,0-2H4C2.9,2,2,2.9,2,4v18l4-4h14c1.1,0,2-0.9,2-2V6.98c-0.58,0.44-1.26,0.77-2,0.92 V16z"/><path d="M6,8h12V7.9c-1.21-0.25-2.25-0.95-2.97-1.9H6V8z"/>
20 </SvgIcon>
21 }
22}