47 lines
1.2 KiB
TypeScript
47 lines
1.2 KiB
TypeScript
|
|
import React from "react";
|
||
|
|
|
||
|
|
const CalendarSvg: React.FC<React.SVGProps<SVGSVGElement>> = (props) => (
|
||
|
|
<svg
|
||
|
|
width="24"
|
||
|
|
height="24"
|
||
|
|
viewBox="0 0 24 24"
|
||
|
|
fill="none"
|
||
|
|
xmlns="http://www.w3.org/2000/svg"
|
||
|
|
{...props}
|
||
|
|
>
|
||
|
|
<path
|
||
|
|
d="M16 2V6"
|
||
|
|
stroke="#333C47"
|
||
|
|
strokeWidth="1.5"
|
||
|
|
strokeLinecap="round"
|
||
|
|
strokeLinejoin="round"
|
||
|
|
/>
|
||
|
|
<path
|
||
|
|
d="M8 2V6"
|
||
|
|
stroke="#333C47"
|
||
|
|
strokeWidth="1.5"
|
||
|
|
strokeLinecap="round"
|
||
|
|
strokeLinejoin="round"
|
||
|
|
/>
|
||
|
|
<path
|
||
|
|
d="M3 9H21"
|
||
|
|
stroke="#333C47"
|
||
|
|
strokeWidth="1.5"
|
||
|
|
strokeLinecap="round"
|
||
|
|
strokeLinejoin="round"
|
||
|
|
/>
|
||
|
|
<path
|
||
|
|
fillRule="evenodd"
|
||
|
|
clipRule="evenodd"
|
||
|
|
d="M19 4H5C3.895 4 3 4.895 3 6V19C3 20.105 3.895 21 5 21H19C20.105 21 21 20.105 21 19V6C21 4.895 20.105 4 19 4Z"
|
||
|
|
stroke="#333C47"
|
||
|
|
strokeWidth="1.5"
|
||
|
|
strokeLinecap="round"
|
||
|
|
strokeLinejoin="round"
|
||
|
|
/>
|
||
|
|
<rect x="3" y="4" width="18" height="5" rx="2" fill="#333C47" />
|
||
|
|
</svg>
|
||
|
|
);
|
||
|
|
|
||
|
|
export default CalendarSvg;
|