Files
svitan.dev/src/components/ArrowLink.astro
2025-06-30 16:37:35 +02:00

16 lines
325 B
Plaintext

---
interface Props {
link: string;
icon?: string;
}
const {link, icon} = Astro.props
---
<a href={link} target="_blank">
<img src={icon ?? "/icons/arrow-up-right-from-square.svg"}
alt="Arrow going to the top right from the center of a square, representing a link"
class="w-4 h-4"
/>
</a>