UsersIcon.jsx

 1export function UsersIcon(props) {
 2  return (
 3    <svg viewBox="0 0 20 20" aria-hidden="true" {...props}>
 4      <path
 5        fill="none"
 6        strokeLinecap="round"
 7        strokeLinejoin="round"
 8        d="M10.046 16H1.955a.458.458 0 0 1-.455-.459C1.5 13.056 3.515 11 6 11h.5"
 9      />
10      <path
11        strokeLinecap="round"
12        strokeLinejoin="round"
13        d="M7.5 15.454C7.5 12.442 9.988 10 13 10s5.5 2.442 5.5 5.454a.545.545 0 0 1-.546.546H8.045a.545.545 0 0 1-.545-.546Z"
14      />
15      <path
16        fill="none"
17        strokeLinecap="round"
18        strokeLinejoin="round"
19        d="M6.5 4a2 2 0 1 1 0 4 2 2 0 0 1 0-4Z"
20      />
21      <path
22        strokeLinecap="round"
23        strokeLinejoin="round"
24        d="M13 2a2.5 2.5 0 1 1 0 5 2.5 2.5 0 0 1 0-5Z"
25      />
26    </svg>
27  )
28}