semantic-ui-react
Version:
The official Semantic-UI-React integration.
19 lines (12 loc) • 450 B
TypeScript
import * as React from 'react';
import { SelectProps } from '../../addons/Select';
import { FormFieldProps } from './FormField';
export interface FormSelectProps extends FormFieldProps, SelectProps {
[key: string]: any;
/** An element type to render as (string or function). */
as?: any;
/** A FormField control prop. */
control?: any;
}
declare const FormSelect: React.StatelessComponent<FormSelectProps>;
export default FormSelect;