import * as React from 'react'; import { Link } from 'react-router-dom'; import { Button, Flex, Divider } from '@fluentui/react-northstar'; import { ArrowLeftIcon, ArrowRightIcon } from '@fluentui/react-icons-northstar'; export type PageDescriptor = { name: string; url: string; }; type GuidesNavigationFooterProps = { previous?: PageDescriptor; next?: PageDescriptor; }; const GuidesNavigationFooter: React.FC = ({ previous, next }) => ( <>

{previous && (