aboutsummaryrefslogtreecommitdiff
path: root/src/components/Pagination/Next.astro
blob: 1a95710d424ee8ff8f73efcddeb1807a38de8085 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
---
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>