@kwiz/fluentui
Version:
KWIZ common controls for FluentUI
15 lines (14 loc) • 352 B
TypeScript
import React from 'react';
interface IProps {
required?: boolean;
error?: string;
value: string;
onChange: (newValue: string) => void;
css: string[];
label: string;
description?: string;
type?: "text" | "multiline";
allowTab?: boolean;
}
export declare const FieldEditor: React.FunctionComponent<IProps>;
export {};