2023-07-04 17:43:07 +00:00
|
|
|
import React from "react";
|
|
|
|
|
|
|
|
import type { Props } from "./types";
|
|
|
|
|
|
|
|
export const CalendarBeforeIcon: React.FC<Props> = ({ width = "24", height = "24", className }) => (
|
|
|
|
<svg
|
|
|
|
width={width}
|
|
|
|
height={height}
|
|
|
|
className={className}
|
|
|
|
viewBox="0 0 18 18"
|
|
|
|
fill="none"
|
|
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
|
|
>
|
|
|
|
<g clipPath="url(#clip0_3309_70907)">
|
|
|
|
<path
|
|
|
|
d="M10.6125 16.5V15.375H14.625V7.3125H3.375V11.4375H2.25V3.75C2.25 3.45 2.3625 3.1875 2.5875 2.9625C2.8125 2.7375 3.075 2.625 3.375 2.625H4.59375V1.5H5.8125V2.625H12.1875V1.5H13.4062V2.625H14.625C14.925 2.625 15.1875 2.7375 15.4125 2.9625C15.6375 3.1875 15.75 3.45 15.75 3.75V15.375C15.75 15.675 15.6375 15.9375 15.4125 16.1625C15.1875 16.3875 14.925 16.5 14.625 16.5H10.6125ZM3.375 6.1875H14.625V3.75H3.375V6.1875Z"
|
2023-07-10 07:17:00 +00:00
|
|
|
fill="rgb(var(--color-text-200))"
|
2023-07-04 17:43:07 +00:00
|
|
|
/>
|
|
|
|
<g clipPath="url(#clip1_3309_70907)">
|
|
|
|
<path
|
|
|
|
d="M3.99967 17.1667L1.33301 14.5L3.99967 11.8334L4.34967 12.1834L2.28301 14.25H8V14.75H2.28301L4.34967 16.8167L3.99967 17.1667Z"
|
2023-07-10 07:17:00 +00:00
|
|
|
fill="rgb(var(--color-text-200))"
|
|
|
|
stroke="rgb(var(--color-text-200))"
|
2023-07-04 17:43:07 +00:00
|
|
|
strokeWidth="0.5"
|
|
|
|
/>
|
|
|
|
</g>
|
|
|
|
</g>
|
|
|
|
<defs>
|
|
|
|
<clipPath id="clip0_3309_70907">
|
|
|
|
<rect width="18" height="18" fill="white" />
|
|
|
|
</clipPath>
|
|
|
|
<clipPath id="clip1_3309_70907">
|
|
|
|
<rect width="8" height="8" fill="white" transform="translate(0 10.5)" />
|
|
|
|
</clipPath>
|
|
|
|
</defs>
|
|
|
|
</svg>
|
|
|
|
);
|