16 lines
684 B
TypeScript
16 lines
684 B
TypeScript
function PeopleIcon() {
|
|
return (
|
|
<svg viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
<path
|
|
d="M6.611 6.889a1.944 1.944 0 1 0 0-3.889 1.944 1.944 0 0 0 0 3.889Zm3.779-3.612a1.943 1.943 0 0 1 0 3.334m-7.945 6.054v.333h8.333v-.333c0-1.245 0-1.867-.242-2.342a2.22 2.22 0 0 0-.972-.971c-.475-.243-1.097-.243-2.342-.243H6c-1.244 0-1.867 0-2.342.243a2.22 2.22 0 0 0-.971.97c-.242.476-.242 1.098-.242 2.343Zm11.11.333v-.333c0-1.245 0-1.867-.242-2.342a2.22 2.22 0 0 0-.971-.971"
|
|
stroke="currentColor"
|
|
strokeWidth={1.2}
|
|
strokeLinecap="square"
|
|
strokeLinejoin="round"
|
|
/>
|
|
</svg>
|
|
);
|
|
}
|
|
|
|
export default PeopleIcon;
|