import styled from '@emotion/styled'; import { CircularProgressBar } from '@/ui/feedback/progress-bar/components/CircularProgressBar'; import { MainButton } from '@/ui/input/button/components/MainButton'; import { Modal } from '@/ui/layout/modal/components/Modal'; import { isUndefinedOrNull } from '~/utils/isUndefinedOrNull'; const StyledFooter = styled(Modal.Footer)` gap: ${({ theme }) => theme.spacing(2.5)}; justify-content: space-between; padding: ${({ theme }) => theme.spacing(6)} ${({ theme }) => theme.spacing(8)}; `; type StepNavigationButtonProps = { onClick: () => void; title: string; isLoading?: boolean; onBack?: () => void; }; export const StepNavigationButton = ({ onClick, title, isLoading, onBack, }: StepNavigationButtonProps) => { return ( {!isUndefinedOrNull(onBack) && ( )} ); };