semantic-ui-react
Version:
The official Semantic-UI-React integration.
12 lines (7 loc) • 302 B
TypeScript
import * as React from 'react';
import { SelectProps } from '../../addons/Select';
import { FormFieldProps } from './FormField';
export interface FormSelectProps extends FormFieldProps, SelectProps {
}
declare const FormSelect: React.StatelessComponent<FormSelectProps>;
export default FormSelect;