import { MdArrowBackIosNew, MdArrowForwardIos, MdOutlinePreview } from 'react-icons/md'; import { Button } from 'components/Elements'; import variables from 'config/variables'; function Navigation({ currentTab, changeTab, buttonText, modalSkip }) { return (
{currentTab !== 0 ? (
); } export { Navigation as default, Navigation };