@master-c8/icons
Version:
Platzi Master C8 Icons
18 lines (15 loc) • 617 B
JavaScript
import { forwardRef } from 'react';
import { SvgIcon } from '@mui/material';
const UserGroup = forwardRef(function UserGroup(props, ref) {
return (
<SvgIcon {...props} {...ref}>
<path
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth={2}
d="M17 20h5v-2a3 3 0 00-5.356-1.857M17 20H7m10 0v-2c0-.656-.126-1.283-.356-1.857M7 20H2v-2a3 3 0 015.356-1.857M7 20v-2c0-.656.126-1.283.356-1.857m0 0a5.002 5.002 0 019.288 0M15 7a3 3 0 11-6 0 3 3 0 016 0zm6 3a2 2 0 11-4 0 2 2 0 014 0zM7 10a2 2 0 11-4 0 2 2 0 014 0z"
/>
</SvgIcon>
);
});
export default UserGroup;