How can I add links to my react-icons. I want to link the LinkedIn button to my linked in and have a mailto option for the mail icon.
I am using Next.js and TailwindCSS to create my application.
Here is the snippet of my code.
<div className="text-5xl flex justify-center gap-16 py-3 text-gray-600 dark:text-gray-50">
<AiFillLinkedin href="https://www.google.com/"/>
<AiFillMail href="mailto:info@mailgo.dev"/>
</div>