Files
martials.no/src/components/links/ExternalLink.astro
Martin Berg Alstad cb00252364
All checks were successful
Build and deploy website / build (push) Successful in 33s
🎨 Format files, Added codeberg to links,lighter colour for linkcards
2025-02-15 14:59:32 +01:00

19 lines
314 B
Plaintext

---
import type { LinkProps } from "@/types/props"
interface Props extends LinkProps {
noStyle?: boolean
}
const { href, noStyle = false, class: clazz, ...props } = Astro.props
---
<a
href={href}
target="_blank"
rel="noopener"
class:list={[noStyle ? "" : "link", clazz]}
{...props}
>
<slot />
</a>