16 lines
325 B
Plaintext
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>
|