generated from Fascinated/nextjs-13-template-with-tailwindcss
add optional color to icon only links
All checks were successful
Publish Docker Image / docker (push) Successful in 1m44s
All checks were successful
Publish Docker Image / docker (push) Successful in 1m44s
This commit is contained in:
@ -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>
|
||||
);
|
||||
})}
|
||||
|
Reference in New Issue
Block a user