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

17.14% Statements 6/35
100% Branches 0/0
0% Functions 0/1
17.14% Lines 6/35

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 28 29 30 31 32 33 34 35 361x 1x 1x                                                           1x 1x 1x  
import type { SVGProps } from "react";
 
const UsersIcon = (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="M7.49984 1.04175C5.31371 1.04175 3.5415 2.81395 3.5415 5.00008C3.5415 7.18621 5.31371 8.95842 7.49984 8.95842C9.68596 8.95842 11.4582 7.18621 11.4582 5.00008C11.4582 2.81395 9.68596 1.04175 7.49984 1.04175ZM4.7915 5.00008C4.7915 3.50431 6.00407 2.29175 7.49984 2.29175C8.99561 2.29175 10.2082 3.50431 10.2082 5.00008C10.2082 6.49585 8.99561 7.70842 7.49984 7.70842C6.00407 7.70842 4.7915 6.49585 4.7915 5.00008Z"
      fill="currentColor"
    />
    <path
      d="M12.4998 1.87508C12.1547 1.87508 11.8748 2.1549 11.8748 2.50008C11.8748 2.84526 12.1547 3.12508 12.4998 3.12508C13.5354 3.12508 14.3748 3.96455 14.3748 5.00008C14.3748 6.03562 13.5354 6.87508 12.4998 6.87508C12.1547 6.87508 11.8748 7.1549 11.8748 7.50008C11.8748 7.84526 12.1547 8.12508 12.4998 8.12508C14.2257 8.12508 15.6248 6.72597 15.6248 5.00008C15.6248 3.27419 14.2257 1.87508 12.4998 1.87508Z"
      fill="currentColor"
    />
    <path
      fillRule="evenodd"
      clipRule="evenodd"
      d="M3.06496 11.2671C4.2311 10.6007 5.80039 10.2084 7.49984 10.2084C9.19928 10.2084 10.7686 10.6007 11.9347 11.2671C13.0832 11.9233 13.9582 12.9252 13.9582 14.1667C13.9582 15.4083 13.0832 16.4102 11.9347 17.0664C10.7686 17.7328 9.19928 18.1251 7.49984 18.1251C5.80039 18.1251 4.2311 17.7328 3.06496 17.0664C1.9165 16.4102 1.0415 15.4083 1.0415 14.1667C1.0415 12.9252 1.9165 11.9233 3.06496 11.2671ZM3.68513 12.3524C2.72234 12.9025 2.2915 13.5674 2.2915 14.1667C2.2915 14.7661 2.72234 15.431 3.68513 15.9811C4.63025 16.5212 5.97762 16.8751 7.49984 16.8751C9.02205 16.8751 10.3694 16.5212 11.3145 15.9811C12.2773 15.431 12.7082 14.7661 12.7082 14.1667C12.7082 13.5674 12.2773 12.9025 11.3145 12.3524C10.3694 11.8123 9.02205 11.4584 7.49984 11.4584C5.97762 11.4584 4.63025 11.8123 3.68513 12.3524Z"
      fill="currentColor"
    />
    <path
      d="M15.1337 11.0563C14.7965 10.9823 14.4633 11.1957 14.3893 11.5329C14.3154 11.87 14.5288 12.2033 14.866 12.2772C15.5263 12.422 16.054 12.6708 16.4022 12.9557C16.751 13.2411 16.8748 13.5198 16.8748 13.7501C16.8748 13.959 16.7743 14.2043 16.4973 14.4617C16.2182 14.7209 15.7894 14.9604 15.2363 15.127C14.9058 15.2265 14.7185 15.5751 14.818 15.9056C14.9176 16.2362 15.2662 16.4234 15.5967 16.3239C16.2822 16.1175 16.8951 15.7982 17.348 15.3775C17.803 14.9549 18.1248 14.3989 18.1248 13.7501C18.1248 13.0294 17.7296 12.4268 17.1938 11.9884C16.6576 11.5495 15.9353 11.232 15.1337 11.0563Z"
      fill="currentColor"
    />
  </svg>
);
 
export default UsersIcon;