import React from 'react'; import { cn } from '@/lib/utils'; interface BillingToggleProps { value: 'month' | 'year'; onChange: (value: 'month' | 'year') => void; } export const BillingToggle: React.FC = ({ value, onChange }) => { return (
); };