"use client"; import { cn } from "@/lib/utils"; import { AnimatePresence, motion } from "framer-motion"; import { LoaderPinwheel } from "lucide-react"; type PrimaryButtonProps = React.ButtonHTMLAttributes & { loading?: boolean; children: React.ReactNode; }; export default function PrimaryButton({ children, loading, className, onClick }: PrimaryButtonProps) { return ( ); }