import React from 'react' interface UserIconProps { color?: string; width?: number | string height?: number | string className?: string } /** @deprecated Use icons from icons-v2-generated instead. */ export function UserIcon({ width = 24, height = 23, className = "text-current" , color = 'white' }: UserIconProps) { return ( ) }