import type { PlanTier } from '@/entities/plan'; import { copy } from '@/shared/i18n'; import { cn } from '@/shared/lib/cn'; interface PlanPillProps { plan: PlanTier; onClick: () => void; } export const PlanPill = ({ plan, onClick }: PlanPillProps) => { const isPro = plan === 'pro'; return ( ); };