import React from 'react' interface UserIconProps { width?: number | string height?: number | string className?: string } export function UserIcon({ width = 24, height = 23, className = "text-current" }: UserIconProps) { return ( ) }