UNPKG

react-oddball-icons

Version:
43 lines (42 loc) 968 B
import * as React from "react"; const SvgAvatar = (props) => ( <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" fill="none" viewBox="0 0 64 64" {...props} > <path stroke="#000" strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M32 32c6.627 0 12-5.373 12-12S38.627 8 32 8s-12 5.373-12 12 5.373 12 12 12M16 42.2c0-9.6 32-9.6 32 0V55H16z" /> <path fill="#000" stroke="#000" strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M26 20a2 2 0 1 0 0-4 2 2 0 0 0 0 4M38 20a2 2 0 1 0 0-4 2 2 0 0 0 0 4" /> <path stroke="#000" strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M20 14c4-2 6 0 8 0" /> <path stroke="#000" strokeLinecap="round" strokeLinejoin="round" strokeWidth={1.5} d="M34 14h8" /> </svg> ); export default SvgAvatar;