sebikostudio-icons
Version:
A collection of icon components
17 lines (12 loc) • 1.46 kB
JavaScript
import React, { forwardRef } from 'react';
export const UsersThreeIcon = forwardRef(({ className, style, ariaLabel, ...props }, ref) => (
<svg ref={ref} className={className} aria-label={ariaLabel || "users three, people, users, three"} style={style} width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
<path d="M12 10C12 11.1046 11.1046 12 10 12C8.89543 12 8 11.1046 8 10C8 8.89543 8.89543 8 10 8C11.1046 8 12 8.89543 12 10Z" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/>
<path d="M16 3.5C16 4.60457 15.1046 5.5 14 5.5C12.8954 5.5 12 4.60457 12 3.5C12 2.39543 12.8954 1.5 14 1.5C15.1046 1.5 16 2.39543 16 3.5Z" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/>
<path d="M8.50009 14.5C6.8 14.5 5.5 15.5 5.5 17V18.5H14.5V17C14.5 15.5 13.1999 14.5 11.5 14.5H8.50009Z" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/>
<path d="M15 8H15.4999C17.1998 8 18.4999 9 18.4999 10.5L18.5 12.5H16" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/>
<path d="M8 3.5C8 4.60457 7.10457 5.5 6 5.5C4.89543 5.5 4 4.60457 4 3.5C4 2.39543 4.89543 1.5 6 1.5C7.10457 1.5 8 2.39543 8 3.5Z" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/>
<path d="M5 8H4.50009C2.8 8 1.5 9 1.5 10.5V12.5H4" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/>
</svg>
));
export default UsersThreeIcon;