UNPKG

@thejones/react-common-components

Version:

React component - semantic ui

21 lines (14 loc) 558 B
import * as React from 'react' import { StrictDropdownProps } from '../../modules/Dropdown' import { StrictFormFieldProps } from './FormField' export interface FormDropdownProps extends StrictFormDropdownProps { [key: string]: any } export interface StrictFormDropdownProps extends StrictFormFieldProps, StrictDropdownProps { /** An element type to render as (string or function). */ as?: any /** A FormField control prop. */ control?: any } declare const FormDropdown: React.StatelessComponent<FormDropdownProps> export default FormDropdown