21 lines
630 B
TypeScript
21 lines
630 B
TypeScript
import React from "react";
|
|
|
|
export default function UserIcon(props: React.SVGProps<SVGSVGElement>) {
|
|
return (
|
|
<svg
|
|
viewBox="0 0 128 128"
|
|
version="1.1"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
xmlnsXlink="http://www.w3.org/1999/xlink"
|
|
{...props}
|
|
>
|
|
<g stroke="none" strokeWidth="1" fill="none" fillRule="evenodd">
|
|
<circle fill="currentColor" cx="64" cy="48" r="32"></circle>
|
|
<path
|
|
d="M112,128 C112,101.490332 90.509668,80 64,80 C37.490332,80 16,101.490332 16,128 C16,128 112,128 112,128 Z"
|
|
fill="currentColor"
|
|
></path>
|
|
</g>
|
|
</svg>
|
|
);
|
|
}
|