From e05a663fbbc02972b3676802e0e95933a6370978 Mon Sep 17 00:00:00 2001 From: Aidan Date: Sun, 5 Jan 2025 14:50:33 -0500 Subject: [PATCH] don't use any type for icon (make vercel happy) --- app/components/ContactTmp.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/components/ContactTmp.tsx b/app/components/ContactTmp.tsx index 4791e61..97d1e3a 100644 --- a/app/components/ContactTmp.tsx +++ b/app/components/ContactTmp.tsx @@ -1,6 +1,7 @@ import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' import { faPhone, faEnvelope } from '@fortawesome/free-solid-svg-icons' import { faGithub, faTelegram } from '@fortawesome/free-brands-svg-icons' +import { IconDefinition } from '@fortawesome/fontawesome-svg-core' export default function Contact() { return ( @@ -29,7 +30,7 @@ export default function Contact() { interface ContactButtonProps { href: string; - icon: any; + icon: IconDefinition; label: string; className?: string; }