popov.link/src/components/Pagination.astro

25 lines
396 B
Plaintext
Raw Normal View History

2024-09-12 22:10:31 +00:00
---
import Next from "./Pagination/Next.astro";
import Prev from "./Pagination/Prev.astro";
2024-09-12 22:10:31 +00:00
type Props = {
readonly nextUrl?: string;
2024-09-12 22:57:55 +00:00
readonly prevUrl?: string;
2024-09-12 22:10:31 +00:00
};
2024-09-12 22:57:55 +00:00
const { nextUrl, prevUrl } = Astro.props;
2024-09-12 22:10:31 +00:00
---
<style lang="scss">
div {
2024-09-12 22:10:31 +00:00
overflow: hidden;
padding: 3rem 0;
width: 100%;
}
</style>
<div>
{prevUrl && <Prev url={prevUrl} />}
{nextUrl && <Next url={nextUrl} />}
2024-09-12 22:10:31 +00:00
</div>