UNPKG

@amsterdam/design-system-react

Version:

All React components from the Amsterdam Design System. Use it to compose pages in your website or application.

12 lines (11 loc) 427 B
/** * @license EUPL-1.2+ * Copyright Gemeente Amsterdam */ import { PaginationProps } from './Pagination'; type LinkItemProps = Pick<PaginationProps, 'linkComponent' | 'linkTemplate'> & { currentPage: PaginationProps['page']; pageNumber: number; }; export declare const LinkItem: ({ currentPage, linkComponent, linkTemplate, pageNumber }: LinkItemProps) => import("react/jsx-runtime").JSX.Element | null; export {};