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