16 lines
545 B
TypeScript
16 lines
545 B
TypeScript
function CalendarIcon() {
|
|
return (
|
|
<svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
<path
|
|
d="M5.917 3v1.75M14.083 3v1.75M3 15.25V6.5a1.75 1.75 0 0 1 1.75-1.75h10.5A1.75 1.75 0 0 1 17 6.5v8.75m-14 0A1.75 1.75 0 0 0 4.75 17h10.5A1.75 1.75 0 0 0 17 15.25m-14 0V9.417a1.75 1.75 0 0 1 1.75-1.75h10.5A1.75 1.75 0 0 1 17 9.417v5.833"
|
|
stroke="currentColor"
|
|
strokeWidth={1.2}
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
/>
|
|
</svg>
|
|
);
|
|
}
|
|
|
|
export default CalendarIcon;
|