import React from 'react' import { GenericButton, type GenericProps } from '~components/ButtonV1/GenericButton' import { Icon } from '~components/Icon' export type DirectionalLinkProps = { label: string disabled?: boolean direction: 'prev' | 'next' | 'start' | 'end' } & GenericProps const iconNameMap = { prev: 'arrow_back', next: 'arrow_forward', start: 'keyboard_tab_rtl', end: 'keyboard_tab', } /** * {@link https://cultureamp.atlassian.net/wiki/spaces/DesignSystem/pages/3082092975/Pagination Guidance} | * {@link https://cultureamp.design/?path=/docs/components-pagination-directionallink--docs Storybook} */ export const DirectionalLink = ({ reversed = false, disabled = false, ...otherProps }: DirectionalLinkProps): JSX.Element => ( } /> ) DirectionalLink.displayName = 'DirectionalLink'