import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; import { IconProp } from "@fortawesome/fontawesome-svg-core"; type Props = { onClick?: Function; icon?: IconProp; label: string; loading?: boolean; className?: string; type?: "button" | "submit" | "reset" | undefined; }; export default function AccentSubmitButton({ onClick, icon, label, loading, className, type, }: Props) { return ( ); }