martials.no/src/components/links/ExternalLink.astro

13 lines
197 B
Plaintext
Raw Normal View History

2024-09-25 22:20:47 +02:00
---
interface Props {
href: string
class?: string
}
const { href, class: clazz } = Astro.props
---
<a href={href} target="_blank" rel="noopener" class:list={["link", clazz]}>
<slot />
</a>