"use client"; import { Button } from "@/components/ui/button"; import { type ComponentProps } from "react"; import { useFormStatus } from "react-dom"; type Props = ComponentProps & { pendingText?: string; }; export function SubmitButton({ children, pendingText = "Submitting...", ...props }: Props) { const { pending } = useFormStatus(); return ( ); }