mirror of
https://github.com/Snigdha-OS/documentation.git
synced 2025-09-16 20:44:56 +02:00
48 lines
1.3 KiB
JavaScript
48 lines
1.3 KiB
JavaScript
/**
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
import React from 'react';
|
|
import Translate, {translate} from '@docusaurus/Translate';
|
|
import PaginatorNavLink from '@theme/PaginatorNavLink';
|
|
export default function DocPaginator(props) {
|
|
const {previous, next} = props;
|
|
return (
|
|
<nav
|
|
className="pagination-nav docusaurus-mt-lg"
|
|
aria-label={translate({
|
|
id: 'theme.docs.paginator.navAriaLabel',
|
|
message: 'Docs pages',
|
|
description: 'The ARIA label for the docs pagination',
|
|
})}>
|
|
{previous && (
|
|
<PaginatorNavLink
|
|
{...previous}
|
|
subLabel={
|
|
<Translate
|
|
id="theme.docs.paginator.previous"
|
|
description="The label used to navigate to the previous doc">
|
|
Previous
|
|
</Translate>
|
|
}
|
|
/>
|
|
)}
|
|
{next && (
|
|
<PaginatorNavLink
|
|
{...next}
|
|
subLabel={
|
|
<Translate
|
|
id="theme.docs.paginator.next"
|
|
description="The label used to navigate to the next doc">
|
|
Next
|
|
</Translate>
|
|
}
|
|
isNext
|
|
/>
|
|
)}
|
|
</nav>
|
|
);
|
|
}
|