Files
reacord/packages/website/src/components/external-link.astro
2023-03-12 15:58:47 -05:00

8 lines
143 B
Plaintext

---
export type Props = astroHTML.JSX.AnchorHTMLAttributes
---
<a rel="noopener noreferrer" target="_blank" {...Astro.props}>
<slot />
</a>