import { forwardRef } from 'react'; import type { IconProps } from './types'; export const UserCircle = forwardRef(function UserCircle( { color = 'currentColor', ...props }, ref, ) { return ( ); });