"use client"
import { cn } from "@/lib/utils"
interface BillingToggleProps {
billingCycle: "monthly" | "annual"
setBillingCycle: (value: "monthly" | "annual") => void
discount: number
}
export function BillingToggle({ billingCycle, setBillingCycle, discount }: BillingToggleProps) {
return (
)
}