UNPKG

@raona/components

Version:

React components used at Raona to work with SPFx

12 lines (11 loc) 392 B
import * as React from 'react'; import { WrapperComponentProps } from './WrapperComponent'; export interface SPTextFieldProps extends WrapperComponentProps { onChange?(e: any): void; onBlur?: (e: any) => void; value: string; defaultValue: string; errorMessage?: string; placeholder?: string; } export declare const SPTextField: React.SFC<SPTextFieldProps>;