import { Badge } from '@/components/ui/badge'; import { cn } from '@/lib/utils'; import { __ } from '@/utils/i18n'; /** * The "PRO" badge used to mark paid-plan features across settings. */ export function ProBadge({ className }: { className?: string }) { return ( {__('PRO')} ); }