import React from 'react'; import { ChevronDownIcon, ChevronUpIcon } from '@100mslive/react-icons'; import { Flex } from '../../../Layout'; export const ArrowNavigation = ({ total, index, showPrevious, showNext, }: { total: number; index: number; showPrevious: () => void; showNext: () => void; }) => { if (total < 2) { return null; } return ( ); };