2025-02-21 19:54:48 +08:00

24 lines
981 B
TypeScript

import { FC } from 'react';
interface IconUsersProps {
className?: string;
}
const IconUsers: FC<IconUsersProps> = ({ className }) => {
return (
<svg width="20" height="20" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" className={className}>
<circle cx="9" cy="6" r="4" stroke="currentColor" strokeWidth="1.5" />
<path
opacity="0.5"
d="M12.5 4.3411C13.0375 3.53275 13.9565 3 15 3C16.6569 3 18 4.34315 18 6C18 7.65685 16.6569 9 15 9C13.9565 9 13.0375 8.46725 12.5 7.6589"
stroke="currentColor"
strokeWidth="1.5"
/>
<ellipse cx="9" cy="17" rx="7" ry="4" stroke="currentColor" strokeWidth="1.5" />
<path opacity="0.5" d="M18 14C19.7542 14.3847 21 15.3589 21 16.5C21 17.5293 19.9863 18.4229 18.5 18.8704" stroke="currentColor" strokeWidth="1.5" strokeLinecap="round" />
</svg>
);
};
export default IconUsers;