import { IconType } from "react-icons/lib" import { cn } from "@/lib/utils/cn" export function SingleIcon({ type, className = "", thickOnHover = false, }: { type?: IconType className?: string thickOnHover?: boolean }) { if (!type) { return null } const Icon = type return ( ) }