@try-at-software/input-elements
Version:
A package providing different input elements that are extensible and easily configurable for your custom needs.
10 lines (9 loc) • 337 B
TypeScript
import { MessageBarType } from '@fluentui/react';
import * as React from 'react';
import { FormText } from './Types';
interface IErrorRendererProps {
error: FormText;
messageBarType: MessageBarType;
}
export declare const ErrorRenderer: React.MemoExoticComponent<(props: IErrorRendererProps) => JSX.Element>;
export {};