UNPKG

jobiqo-cl

Version:

[![CircleCI](https://circleci.com/gh/jobiqo/jobiqo-cl.svg?style=svg&circle-token=5a24efa5b8bbc4879276123e77d0d3f35ca7144c)](https://circleci.com/gh/jobiqo/jobiqo-cl)

18 lines (17 loc) 484 B
/** * @file index.tsx * * @fileoverview Pager component. Renders a list of links as a pager. */ import * as React from 'react'; export interface PagerProps { /** * The contents of the pager. */ children: React.ReactNode | string; } /** * Styles a list of items (anchors inside a list) with the theme provided by the theme object, in the form of a pager. */ export declare const Pager: ({ children, ...props }: PagerProps) => JSX.Element; export default Pager;