add optional color to icon only links
All checks were successful
Publish Docker Image / docker (push) Successful in 1m44s

This commit is contained in:
Lee
2023-07-12 10:02:26 +01:00
parent 1486ce77a5
commit 1c3a39f5b8
3 changed files with 24 additions and 6 deletions

View File

@ -123,9 +123,15 @@ export default function Home() {
href={link.url}
target="_blank"
rel="noopener noreferrer"
className={`hover:brightness-75 transition`}
className="hover:brightness-75 transition"
>
{link.icon && <FontAwesomeIcon size="2xl" icon={icons} />}
{link.icon && (
<FontAwesomeIcon
color={link.color && link.color}
size="2xl"
icon={icons}
/>
)}
</a>
);
})}