zuicon_material/icons/
mark_chat_read_outlined.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(MarkChatReadOutlined)]
11pub fn mark_chat_read_outlined(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("MarkChatReadOutlined"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M12,18l-6,0l-4,4V4c0-1.1,0.9-2,2-2h16c1.1,0,2,0.9,2,2v7l-2,0V4H4v12l8,0V18z M23,14.34l-1.41-1.41l-4.24,4.24l-2.12-2.12 l-1.41,1.41L17.34,20L23,14.34z"/>
20 </SvgIcon>
21 }
22}