interface IconProps { icon?: string; className?: string; } export default function Icon({ icon, className }: IconProps) { return }