// This file is licensed under the Fossorial Commercial License. // Unauthorized use, copying, modification, or distribution is strictly prohibited. // // Copyright (c) 2025 Fossorial LLC. All rights reserved. "use client"; import { cn } from "@app/lib/cn"; type ProfessionalContentOverlayProps = { children: React.ReactNode; isProfessional?: boolean; }; export function ProfessionalContentOverlay({ children, isProfessional = false }: ProfessionalContentOverlayProps) { return (
This feature is only available in the Professional Edition.