From ae1682ad55ecf6b113f71ff70bcfbcf30bef7a78 Mon Sep 17 00:00:00 2001 From: Daniel Date: Mon, 3 Jul 2023 18:15:25 +0330 Subject: [PATCH] small patch --- components/SubmitButton.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/SubmitButton.tsx b/components/SubmitButton.tsx index 265b7c7..02fa455 100644 --- a/components/SubmitButton.tsx +++ b/components/SubmitButton.tsx @@ -1,9 +1,9 @@ import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; -import { IconDefinition } from "@fortawesome/free-regular-svg-icons"; +import { IconProp } from "@fortawesome/fontawesome-svg-core"; type Props = { onClick: Function; - icon?: IconDefinition; + icon?: IconProp; label: string; loading: boolean; className?: string;