import { Check, ChevronRight } from 'lucide-react'; import { Button } from '@kit/ui/button'; import { Heading } from '@kit/ui/heading'; import { Trans } from '@kit/ui/trans'; /** * Retrieves the session status for a Stripe checkout session. * Since we should only arrive here for a successful checkout, we only check * for the `paid` status. **/ export function BillingSessionStatus({ customerEmail, onRedirect, }: React.PropsWithChildren<{ customerEmail: string; onRedirect: () => void; }>) { return (
🎉

); }