react-oddball-icons
Version:
Odd corporate logos to spice up your website
36 lines (35 loc) • 855 B
JSX
import * as React from "react";
const SvgAvatarAlt = (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
stroke="#000"
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth={2}
d="M32 24c2.21 0 6.5-1.79 6.5-4s-4.29-4-6.5-4-6.5 1.79-6.5 4 4.29 4 6.5 4"
/>
<path
fill="#000"
stroke="#000"
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth={2}
d="M32 22a2 2 0 1 0 0-4 2 2 0 0 0 0 4"
/>
</svg>
);
export default SvgAvatarAlt;