summaryrefslogtreecommitdiff
path: root/src/components/Link.astro
blob: 365441ecf6df91d0d2660f52fde7ff4e6ce520a0 (plain)
1
2
3
4
5
6
7
8
9
---
interface Props {
  href: string;
}

const { href } = Astro.props;
---

<a class="link" href={href}><slot /></a>