interface CustomLicenseIconProps { className?: string; fill?: string; width?: number; height?: number; } export const CustomLicenseIcon = ({ className, fill = "#888888", width = 24, height = 24, ...props }: CustomLicenseIconProps) => ( )