import { cn } from '@/lib/utils' interface CheckoutButtonProps { plan: 'starter' | 'pro' | 'enterprise' className?: string } export function CheckoutButton({ plan, className }: CheckoutButtonProps) { const planLabels = { starter: 'Starter', pro: 'Pro', enterprise: 'Enterprise' } return ( ) }