kontenhumas-fe/components/blocks/upgrade-block.tsx

20 lines
358 B
TypeScript
Raw Permalink Normal View History

2025-09-23 13:07:34 +00:00
import { cn } from "@/lib/utils"
interface UpgradeProps {
image?: any;
children: React.ReactNode;
className?: string;
}
const UpgradeBlock = ({ children, className }: UpgradeProps) => {
return (
<div
className={cn("p-6 relative bg-default-900 rounded-2xl", className)}
>
{children}
</div>
);
};
export { UpgradeBlock };