@tomino/dynamic-form-semantic-ui
Version:
Semantic UI form renderer based on dynamic form generation
13 lines (12 loc) • 450 B
TypeScript
import * as React from 'react';
import { FormComponentProps, FormComponent } from '@tomino/dynamic-form';
import { SemanticICONS } from 'semantic-ui-react/dist/commonjs/generic';
export declare type ButtonProps = {
target: string;
icon: SemanticICONS;
color: string;
content: string;
onClick: any;
};
export declare const ButtonComponent: React.FC<FormComponentProps<ButtonProps>>;
export declare const ButtonView: FormComponent;