import { FormContextType, IconButtonProps, RJSFSchema, StrictRJSFSchema, TranslatableString } from '@rjsf/utils'; import IconButton from './IconButton'; /** The `AddButton` renders a button that represent the `Add` action on a form */ export default function AddButton({ id, className, onClick, disabled, registry, }: IconButtonProps) { const { translateString } = registry; return (

); }