31 lines
933 B
JavaScript
31 lines
933 B
JavaScript
function ClockField() {
|
|
return (
|
|
<svg
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
width="20"
|
|
height="20"
|
|
viewBox="0 0 20 20"
|
|
fill="none"
|
|
>
|
|
<path
|
|
d="M18.3337 10.0003C18.3337 14.6003 14.6003 18.3337 10.0003 18.3337C5.40033 18.3337 1.66699 14.6003 1.66699 10.0003C1.66699 5.40033 5.40033 1.66699 10.0003 1.66699C14.6003 1.66699 18.3337 5.40033 18.3337 10.0003Z"
|
|
stroke="#525252"
|
|
strokeWidth="1.5"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
className="dark:!fill-[#222433] dark:!stroke-[#A1A1A1]"
|
|
/>
|
|
<path
|
|
d="M13.0914 12.6505L10.5081 11.1088C10.0581 10.8421 9.69141 10.2005 9.69141 9.67546V6.25879"
|
|
stroke="#525252"
|
|
strokeWidth="1.5"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
className="dark:!fill-[#222433] dark:!stroke-[#A1A1A1]"
|
|
/>
|
|
</svg>
|
|
);
|
|
}
|
|
|
|
export default ClockField;
|