UNPKG

@rjsf/semantic-ui

Version:

Semantic UI theme, fields and widgets for react-jsonschema-form

9 lines (8 loc) 1.33 kB
import { ButtonProps } from 'semantic-ui-react'; import { FormContextType, IconButtonProps, RJSFSchema, StrictRJSFSchema } from '@rjsf/utils'; export type SemanticIconButtonProps<T = any, S extends StrictRJSFSchema = RJSFSchema, F extends FormContextType = any> = IconButtonProps<T, S, F> & Omit<ButtonProps, 'onChange'>; export default function IconButton<T = any, S extends StrictRJSFSchema = RJSFSchema, F extends FormContextType = any>(props: SemanticIconButtonProps<T, S, F>): import("react/jsx-runtime").JSX.Element; export declare function CopyButton<T = any, S extends StrictRJSFSchema = RJSFSchema, F extends FormContextType = any>(props: SemanticIconButtonProps<T, S, F>): import("react/jsx-runtime").JSX.Element; export declare function MoveDownButton<T = any, S extends StrictRJSFSchema = RJSFSchema, F extends FormContextType = any>(props: SemanticIconButtonProps<T, S, F>): import("react/jsx-runtime").JSX.Element; export declare function MoveUpButton<T = any, S extends StrictRJSFSchema = RJSFSchema, F extends FormContextType = any>(props: SemanticIconButtonProps<T, S, F>): import("react/jsx-runtime").JSX.Element; export declare function RemoveButton<T = any, S extends StrictRJSFSchema = RJSFSchema, F extends FormContextType = any>(props: SemanticIconButtonProps<T, S, F>): import("react/jsx-runtime").JSX.Element;