aboutsummaryrefslogtreecommitdiff
path: root/src/components/Pagination.astro
blob: cc85db70d9ba8514624669b5090f48d771d55026 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
---
import Next from "./Pagination/Next.astro";
import Prev from "./Pagination/Prev.astro";

type Props = {
	readonly prevUrl?: string;
	readonly nextUrl?: string;
};

const { prevUrl, nextUrl } = Astro.props;
---

<style lang="scss">
	div {
		overflow: hidden;
		padding: 3rem 0;
		width: 100%;
	}
</style>

<div>
	{prevUrl && <Prev url={prevUrl} />}
	{nextUrl && <Next url={nextUrl} />}
</div>