aboutsummaryrefslogtreecommitdiff
path: root/src/components/Pagination/Next.astro
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/Pagination/Next.astro')
-rw-r--r--src/components/Pagination/Next.astro18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/components/Pagination/Next.astro b/src/components/Pagination/Next.astro
deleted file mode 100644
index 1a95710..0000000
--- a/src/components/Pagination/Next.astro
+++ /dev/null
@@ -1,18 +0,0 @@
----
-type Props = {
- readonly url: string;
-};
-
-const { url } = Astro.props;
----
-
-<style lang="scss">
- span {
- float: right;
- max-width: 40%;
- }
-</style>
-
-<span>
- <a href={url}>Next &gt;</a>
-</span>