interface CustomExternalLinkIconProps { className?: string; fill?: string; width?: number; height?: number; } export const CustomExternalLinkIcon = ({ className, fill = "#888888", width = 21, height = 22, ...props }: CustomExternalLinkIconProps) => ( )