import { AnimatePresence, motion } from "motion/react"; import AnimatedWidth from "@/components/shared/layout/animated-width"; import ArrowRight from "@/components/app/(home)/sections/hero-input/_svg/ArrowRight"; import Button from "@/components/shared/button/Button"; export default function HeroInputSubmitButton({ dirty, buttonText = "Re-imagine Site", disabled = false, }: { dirty: boolean; buttonText?: string; disabled?: boolean; }) { return ( ); }