type Props = { onClick?: Function; label: string; loading: boolean; className?: string; type?: "button" | "submit" | "reset" | undefined; }; export default function SubmitButton({ onClick, label, loading, className, type, }: Props) { return ( ); }