import Link from 'next/link' import { Lock } from 'lucide-react' import { cn } from '@/lib/utils' /** * Inline paywall note for a feature that is visible but not entitled. * The feature stays on screen (conversion surface: never hide, disable * with an upsell), this note explains why it's disabled and links to * /settings/billing. Copy mirrors CAPABILITY_BLOCKED_MESSAGE_SV. */ export function UpgradeNote({ children, className }: { children?: React.ReactNode; className?: string }) { return (
{children ?? 'Den här funktionen kräver ett abonnemang.'}{' '} Uppgradera
) }