semantic-ui-react
Version:
The official Semantic-UI-React integration.
35 lines (27 loc) • 783 B
JavaScript
import PropTypes from 'prop-types'
import React from 'react'
import { getElementType, getUnhandledProps } from '../../lib'
import Input from '../../elements/Input'
import FormField from './FormField'
/**
* Sugar for <Form.Field control={Input} />.
* @see Form
* @see Input
*/
function FormInput(props) {
const { control } = props
const rest = getUnhandledProps(FormInput, props)
const ElementType = getElementType(FormInput, props)
return <ElementType {...rest} control={control} />
}
FormInput.propTypes = {
/** An element type to render as (string or function). */
as: PropTypes.elementType,
/** A FormField control prop. */
control: FormField.propTypes.control,
}
FormInput.defaultProps = {
as: FormField,
control: Input,
}
export default FormInput