Files
stream.graff.tech-new/client/src/components/icons/UsersIcon.tsx
T

16 lines
681 B
TypeScript

function UsersIcon() {
return (
<svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M12.5 15.94c.71.206 1.447.31 2.187.31a7.8 7.8 0 0 0 3.435-.793 3.437 3.437 0 0 0-6.278-2.078m.656 2.561v-.002a5.3 5.3 0 0 0-.656-2.559m.656 2.561v.088A10.27 10.27 0 0 1 7.187 17.5c-1.943 0-3.76-.538-5.312-1.472l-.001-.09a5.312 5.312 0 0 1 9.97-2.559M10 5.313a2.813 2.813 0 1 1-5.625 0 2.813 2.813 0 0 1 5.625 0m6.875 1.875a2.188 2.188 0 1 1-4.375 0 2.188 2.188 0 0 1 4.375 0"
stroke="currentColor"
strokeWidth={1.2}
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
export default UsersIcon;