sebikostudio-icons
Version:
A collection of icon components
13 lines (8 loc) • 830 B
JavaScript
import React, { forwardRef } from 'react';
export const PersonIcon = forwardRef(({ className, style, ariaLabel, ...props }, ref) => (
<svg ref={ref} className={className} aria-label={ariaLabel || "person, avatar, people, user"} style={style} width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
<path d="M13.5001 6.50006C13.5001 8.43309 11.9331 10.0001 10.0001 10.0001C8.06703 10.0001 6.5 8.43309 6.5 6.50006C6.5 4.56703 8.06703 3 10.0001 3C11.9331 3 13.5001 4.56703 13.5001 6.50006Z" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/>
<path d="M3.5 17.5V16.5C3.5 15 4.5 12.5 7.5 12.5H12.5C15.5 12.5 16.5 15 16.5 16.5V17.5" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/>
</svg>
));
export default PersonIcon;