// MUI Imports import Typography from '@mui/material/Typography' import Button from '@mui/material/Button' // Component Imports import DirectionalIcon from '@components/DirectionalIcon' type Props = { activeStep: number isLastStep: boolean handleNext: () => void handlePrev: () => void } const Submit = ({ activeStep, isLastStep, handleNext, handlePrev }: Props) => { return (