| 4 | import { getSponsorProductId, type SponsorTier } from "@/lib/creem"; |
| 5 | |
| 6 | interface SponsorClaimProps { |
| 7 | className?: string; |
| 8 | labelClassName?: string; |
| 9 | text: string; |
| 10 | textClassName?: string; |
| 11 | tier: SponsorTier; |
| 12 | } |
| 13 | |
| 14 | export default function SponsorClaim({ |
| 15 | tier, |
nothing calls this directly
no outgoing calls
no test coverage detected