summaryrefslogtreecommitdiff
path: root/src/components/Link.astro
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/Link.astro')
-rw-r--r--src/components/Link.astro9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/components/Link.astro b/src/components/Link.astro
deleted file mode 100644
index 365441e..0000000
--- a/src/components/Link.astro
+++ /dev/null
@@ -1,9 +0,0 @@
----
-interface Props {
- href: string;
-}
-
-const { href } = Astro.props;
----
-
-<a class="link" href={href}><slot /></a>