Files
IRTH/src/components/icons/BookingIcon.tsx
T
2024-05-22 14:39:59 +05:00

21 lines
976 B
TypeScript

const BookingIcon = () => {
return (
<svg
width="20"
height="20"
viewBox="0 0 20 20"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
fillRule="evenodd"
clipRule="evenodd"
d="M16.6666 14.8336V8.18475C16.6666 7.87652 16.5244 7.58551 16.2813 7.39602L10.6147 2.9794C10.2532 2.6977 9.7466 2.6977 9.38518 2.9794L3.71851 7.39603C3.4754 7.58551 3.33325 7.87652 3.33325 8.18475V14.8336C3.33325 15.3859 3.78097 15.8336 4.33325 15.8336H7.99992H11.9999H15.6666C16.2189 15.8336 16.6666 15.3859 16.6666 14.8336ZM5.6077 9.83444C5.93705 9.47822 6.49174 9.45338 6.85161 9.77875L9.06456 11.7796L13.1482 8.08737C13.5081 7.762 14.0628 7.78683 14.3921 8.14306C14.7267 8.50493 14.7014 9.07035 14.3358 9.40088L9.73521 13.5604C9.3544 13.9047 8.77472 13.9047 8.3939 13.5604L5.66402 11.0923C5.29845 10.7617 5.27313 10.1963 5.6077 9.83444Z"
fill="currentColor"
/>
</svg>
);
};
export default BookingIcon;