zuicon_material/icons/
no_meeting_room_sharp.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(NoMeetingRoomSharp)]
11pub fn no_meeting_room_sharp(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("NoMeetingRoomSharp"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M0 0h24v24H0V0z" fill="none"/><path d="M14 6h3v7.88l2 2V4h-5V3H6.12L14 10.88zm-2 5.71V13h-2v-2h1.29L2.41 2.13 1 3.54l4 4V19H3v2h11v-4.46L20.46 23l1.41-1.41z"/>
20 </SvgIcon>
21 }
22}