@sparkpost/matchbox
Version:
A React UI component library
15 lines (11 loc) • 338 B
JavaScript
import React from 'react';
import { ArrowForward } from '@sparkpost/matchbox-icons';
import { Button } from '../Button';
import styles from './Pager.module.scss';
const Next = (props) => (
<Button {...props} className={styles.Next}>
<ArrowForward size={16} />
</Button>
);
Next.displayName = 'Pager.Next';
export default Next;