import Box from '@mui/material/Box'; import Button from '@mui/material/Button'; import { getSubmitButtonOptions, FormContextType, RJSFSchema, StrictRJSFSchema, SubmitButtonProps } from '@rjsf/utils'; /** The `SubmitButton` renders a button that represent the `Submit` action on a form */ export default function SubmitButton< T = any, S extends StrictRJSFSchema = RJSFSchema, F extends FormContextType = any, >({ uiSchema }: SubmitButtonProps) { const { submitText, norender, props: submitButtonProps = {} } = getSubmitButtonOptions(uiSchema); if (norender) { return null; } return ( ); }