"use client"; import { usePostHog } from "@rallly/posthog/client"; import { Button } from "@rallly/ui/button"; import Link from "next/link"; import React from "react"; import { Trans } from "@/components/trans"; export const UpgradeButton = ({ children, annual, large, className, }: React.PropsWithChildren<{ annual?: boolean; large?: boolean; className?: string; }>) => { const posthog = usePostHog(); const formRef = React.useRef(null); return (
); };