zuicon_material/icons/
mark_unread_chat_alt.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(MarkUnreadChatAlt)]
11pub fn mark_unread_chat_alt(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("MarkUnreadChatAlt"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M6,8V6h9.03c-1.21-1.6-1.08-3.21-0.92-4H4.01c-1.1,0-2,0.89-2,2L2,22l4-4h14c1.1,0,2-0.9,2-2V6.97 C21.16,7.61,20.13,8,19,8H6z M14,14H6v-2h8V14z M18,11H6V9h12V11z"/>
20 </SvgIcon>
21 }
22}