All files / src/components/ui/icons ClockIcon.tsx

100% Statements 27/27
100% Branches 1/1
100% Functions 1/1
100% Lines 27/27

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 281x 1x 1x 29x 29x 29x 29x 29x 29x 29x 29x 29x 29x 29x 29x 29x 29x 29x 29x 29x 29x 29x 29x 29x 1x 1x 1x  
import type { SVGProps } from "react";
 
const ClockIcon = (props: SVGProps<SVGSVGElement>) => (
  <svg
    width="20"
    height="20"
    viewBox="0 0 20 20"
    fill="none"
    xmlns="http://www.w3.org/2000/svg"
    {...props}
  >
    <path
      fillRule="evenodd"
      clipRule="evenodd"
      d="M10.0002 2.5C5.85812 2.5 2.50016 5.85797 2.50016 10C2.50016 14.142 5.85812 17.5 10.0002 17.5C14.1422 17.5 17.5002 14.142 17.5002 10C17.5002 5.85797 14.1422 2.5 10.0002 2.5ZM1.0835 10C1.0835 5.0756 5.07573 1.08333 10.0002 1.08333C14.9246 1.08333 18.9168 5.0756 18.9168 10C18.9168 14.9244 14.9246 18.9167 10.0002 18.9167C5.07573 18.9167 1.0835 14.9244 1.0835 10Z"
      fill="currentColor"
    />
    <path
      fillRule="evenodd"
      clipRule="evenodd"
      d="M10.0002 4.58333C10.3913 4.58333 10.7085 4.90053 10.7085 5.29167V9.55086L13.5132 11.4699C13.8475 11.6814 13.9411 12.1246 13.7296 12.4589C13.5181 12.7932 13.0749 12.8868 12.7406 12.6753L9.57392 10.5086C9.35839 10.3711 9.22516 10.1377 9.22516 9.88667V5.29167C9.22516 4.90053 9.54236 4.58333 9.9335 4.58333H10.0002Z"
      fill="currentColor"
    />
  </svg>
);
 
export default ClockIcon;