summaryrefslogtreecommitdiff
path: root/src/components/Button.astro
blob: 20b6087544d44604c22e7768b0d1e9a156147645 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
---
interface Props {
  href: string;
  classNames: string;
}

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

<a class={`btn ${classNames}`} href={href}>
  <p>
    <slot />
  </p>
</a>