import React from 'react'; import { Button, ConfigProvider } from 'antd'; import { ArrowLeftOutlined } from '@ant-design/icons'; const FormActions = ({ currentStep, onPreviousStep, onNextStep, onSave, onCancel, confirmLoading, isEditMode = false, showCancelButton = true }) => { return (
{showCancelButton && ( )} {currentStep > 0 && ( )} {currentStep < 1 && ( )} {currentStep === 1 && ( )}
); }; export default FormActions;