UNPKG

@up-group-ui/react-controls

Version:
13 lines (12 loc) 512 B
import React from 'react'; import { BaseControlState } from '../_Common/BaseControl/BaseControl'; import { UpInputProps } from '../Input/types'; export default class UpEmail extends React.Component<UpInputProps, BaseControlState<string>> { static defaultProps: UpInputProps; constructor(p: any, c: any); emailHandleChangeEvent: (event: any, value: any, error: any) => void; get isControlled(): boolean; get currentValue(): string; get currentError(): string; render(): JSX.Element; }