define types of inputs

This commit is contained in:
Aidan 2025-01-05 14:44:59 -05:00
parent 855eb165ab
commit dfcadcff8a

View File

@ -27,7 +27,14 @@ export default function Contact() {
) )
} }
function ContactButton({ href, icon, label, className }) { interface ContactButtonProps {
href: string;
icon: any;
label: string;
className?: string;
}
function ContactButton({ href, icon, label, className }: ContactButtonProps) {
return ( return (
<a <a
href={href} href={href}