import { Box, Button, Text } from 'theme-ui' const PaginationButtons = ({ currentPage, itemCount, perPage }) => { const showPreviousPage = currentPage > 1 const showNextPage = itemCount > currentPage * perPage return ( {showPreviousPage && ( )} {currentPage} {showNextPage && ( )} ) } export default PaginationButtons