phobos/src/components/Social.astro
2024-07-25 21:56:21 +02:00

22 lines
497 B
Text

---
import { Boolify } from "../lib/boolify";
const { href, text, icon } = Astro.props;
const useIcons = Boolify(import.meta.env.PUBLIC_USEICONS);
---
{
useIcons && (
<a href={href} target="_blank" rel="noopener noreferrer">
<i class={`fa${(icon ? icon : text.toLowerCase()) == "envelope" ? '' : '-brands'} fa-${icon ? icon : text.toLowerCase()} fa-2xl`} />
</a>
)
}
{
!useIcons && (
<a href={href} target="_blank" rel="noopener noreferrer">
{text}
</a>
)
}