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