import React from 'react'; import styled from 'styled-components'; import type { JSX } from 'react'; import type { ResolvedNavItemWithLink } from '@redocly/config'; import { breakpoints } from '@redocly/theme/core/utils'; import { useThemeConfig } from '@redocly/theme/core/hooks'; import { NextButton } from '@redocly/theme/components/PageNavigation/NextButton'; import { PreviousButton } from '@redocly/theme/components/PageNavigation/PreviousButton'; export type PageNavigationType = { nextPage?: ResolvedNavItemWithLink | null; prevPage?: ResolvedNavItemWithLink | null; className?: string; }; export function PageNavigation({ nextPage, prevPage, className, }: PageNavigationType): JSX.Element | null { const { navigation } = useThemeConfig(); if (navigation?.previousButton?.hide && navigation?.nextButton?.hide) { return null; } return ( ); } const PageNavigationWrapper = styled.div` display: flex; justify-content: space-between; margin: 25px 0; width: 100%; gap: var(--page-navigations-wrapper-gap); @media print { display: none; } @media screen and (max-width: ${breakpoints.small}) { flex-direction: column; } `;