import AddIcon from '@mui/icons-material/Add'; import IconButton from '@mui/material/IconButton'; import { FormContextType, IconButtonProps, RJSFSchema, StrictRJSFSchema, TranslatableString } from '@rjsf/utils'; /** The `AddButton` renders a button that represent the `Add` action on a form */ export default function AddButton({ uiSchema, registry, ...props }: IconButtonProps) { const { translateString } = registry; return ( ); }