"use client"; import { memo } from "react"; import { cls } from "@/lib/utils"; import type { LucideIcon } from "lucide-react"; import type { InvertedBackground } from "@/providers/themeProvider/config/constants"; interface BentoRevealIconProps { icon: LucideIcon; useInvertedBackground: InvertedBackground; className?: string; } const BentoRevealIcon = ({ icon: Icon, useInvertedBackground, className = "", }: BentoRevealIconProps) => { void useInvertedBackground; return (