import type { FormContextType, RJSFSchema, StrictRJSFSchema } from '@rjsf/utils'; import { TranslatableString } from '@rjsf/utils'; import type { ButtonProps } from 'semantic-ui-react'; import { Button, Icon } from 'semantic-ui-react'; import type { SemanticIconButtonProps } from '../IconButton'; /** The `AddButton` renders a button that represent the `Add` action on a form */ export default function AddButton({ uiSchema, registry, color, ...props }: SemanticIconButtonProps) { const { translateString } = registry; return ( ); }