import { cn } from "@/lib/utils" interface UpgradeProps { image?: any; children: React.ReactNode; className?: string; } const UpgradeBlock = ({ children, className }: UpgradeProps) => { return (
{children}
); }; export { UpgradeBlock };