sebikostudio-icons
Version:
A collection of icon components
14 lines (9 loc) • 873 B
JavaScript
import React, { forwardRef } from 'react';
export const UserMinusIcon = forwardRef(({ className, style, ariaLabel, ...props }, ref) => (
<svg ref={ref} className={className} aria-label={ariaLabel || "person, avatar, people, user, user minus, user remove"} style={style} width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
<path d="M16 6C16 7.65685 14.6569 9 13 9C11.3431 9 10 7.65685 10 6C10 4.34315 11.3431 3 13 3C14.6569 3 16 4.34315 16 6Z" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/>
<path d="M7.5 16.5V15.5C7.5 14 8 11.5 11 11.5H15C18 11.5 18.5 14 18.5 15.5V16.5" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/>
<path d="M2 8.5H7" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/>
</svg>
));
export default UserMinusIcon;