| 17 | import { Icons } from "@/components/icons" |
| 18 | |
| 19 | interface BillingFormProps extends React.HTMLAttributes<HTMLFormElement> { |
| 20 | subscriptionPlan: UserSubscriptionPlan & { |
| 21 | isCanceled: boolean |
| 22 | } |
| 23 | } |
| 24 | |
| 25 | export function BillingForm({ |
| 26 | subscriptionPlan, |
nothing calls this directly
no outgoing calls
no test coverage detected