forked from nodejs/nodejs.dev
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpagination.tsx
More file actions
52 lines (46 loc) · 1.1 KB
/
pagination.tsx
File metadata and controls
52 lines (46 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
import { css, SerializedStyles } from '@emotion/core';
import { Link } from 'gatsby';
import React from 'react';
import { PaginationInfo } from '../types';
const link: SerializedStyles = css`
color: var(--gray7) !important;
text-transform: uppercase;
text-decoration: none !important;
font-size: 1.4rem;
font-weight: normal;
font-family: var(--sans-serif);
vertical-align: middle;
&:hover {
color: var(--brand-light) !important;
}
`;
type Props = {
previous?: PaginationInfo;
next?: PaginationInfo;
};
const ulStyles: SerializedStyles = css`
display: flex;
flex-wrap: wrap;
justify-content: space-between;
list-style: none;
padding: 5rem 0;
`;
const Pagination = ({ previous, next }: Props) => (
<ul css={ulStyles}>
<li>
{previous && previous.title && (
<Link css={link} to={`/${previous.slug}`} rel="prev">
← Prev
</Link>
)}
</li>
<li>
{next && next.title && (
<Link css={link} to={`/${next.slug}`} rel="next">
Next →
</Link>
)}
</li>
</ul>
);
export default Pagination;