Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
export const SidebarIconCalendar = () => {
return (
<svg
className="sidebar__menu-icon svg-calendar"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path d="M7 10H9V12H7V10Z" />
<path d="M9 14H7V16H9V14Z" />
<path d="M11 10H13V12H11V10Z" />
<path d="M17 10H15V12H17V10Z" />
<path d="M11 14H13V16H11V14Z" />
<path d="M17 14H15V16H17V14Z" />
<path
fillRule="evenodd"
clipRule="evenodd"
d="M3 5C3 3.89543 3.89543 3 5 3H19C20.1046 3 21 3.89543 21 5V19C21 20.1046 20.1046 21 19 21H5C3.89543 21 3 20.1046 3 19V5ZM19.5 7H4.5V19C4.5 19.2761 4.72386 19.5 5 19.5H19C19.2761 19.5 19.5 19.2761 19.5 19V7Z"
/>
</svg>
);
};