24 lines
652 B
TypeScript
24 lines
652 B
TypeScript
import type { JSX, SVGProps } from 'react'
|
|
|
|
export const ProfileIcon = (
|
|
properties: JSX.IntrinsicAttributes & SVGProps<SVGSVGElement>,
|
|
) => {
|
|
return (
|
|
<svg
|
|
width={18}
|
|
height={19}
|
|
viewBox="0 0 18 19"
|
|
fill="none"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
{...properties}
|
|
>
|
|
<path
|
|
fillRule="evenodd"
|
|
clipRule="evenodd"
|
|
d="M12.97 5.82A3.956 3.956 0 019 9.789a3.956 3.956 0 01-3.97-3.97A3.955 3.955 0 019 1.853a3.955 3.955 0 013.97 3.968zM9 16.852c-3.253 0-6-.53-6-2.57s2.764-2.55 6-2.55c3.254 0 6 .529 6 2.569s-2.764 2.55-6 2.55z"
|
|
fill="currentColor"
|
|
/>
|
|
</svg>
|
|
)
|
|
}
|