zuicon_material/icons/
calendar_view_week_sharp.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(CalendarViewWeekSharp)]
11pub fn calendar_view_week_sharp(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("CalendarViewWeekSharp"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M0,0h24v24H0V0z" fill="none"/><path d="M22,4H2v16h20V4z M13,6h2.5v12H13V6z M11,18H8.5V6H11V18z M4,6h2.5v12H4V6z M20,18h-2.5V6H20V18z"/>
20 </SvgIcon>
21 }
22}