import React from 'react' import { GenericButton, type GenericProps } from '~components/ButtonV1/GenericButton' export type PaginationLinkProps = GenericProps & { 'pageNumber': number 'isActive'?: boolean /* A description for screen readers to understand because label used here is a number */ 'aria-label': string } /** * {@link https://cultureamp.atlassian.net/wiki/spaces/DesignSystem/pages/3082092975/Pagination Guidance} | * {@link https://cultureamp.design/?path=/docs/components-pagination-paginationlink--docs Storybook} */ export const PaginationLink = ({ pageNumber, reversed = false, isActive = false, ...restProps }: PaginationLinkProps): JSX.Element => ( ) PaginationLink.displayName = 'PaginationLink'