semantic-ui-react
Version:
The official Semantic-UI-React integration.
34 lines (31 loc) • 1.02 kB
JavaScript
import _extends from "@babel/runtime/helpers/esm/extends";
import PropTypes from 'prop-types';
import React from 'react';
import { getElementType, getUnhandledProps } from '../../lib';
import Checkbox from '../../modules/Checkbox';
import FormField from './FormField';
/**
* Sugar for <Form.Field control={Checkbox} />.
* @see Checkbox
* @see Form
*/
function FormCheckbox(props) {
var control = props.control;
var rest = getUnhandledProps(FormCheckbox, props);
var ElementType = getElementType(FormCheckbox, props);
return /*#__PURE__*/React.createElement(ElementType, _extends({}, rest, {
control: control
}));
}
FormCheckbox.handledProps = ["as", "control"];
FormCheckbox.propTypes = process.env.NODE_ENV !== "production" ? {
/** An element type to render as (string or function). */
as: PropTypes.elementType,
/** A FormField control prop. */
control: FormField.propTypes.control
} : {};
FormCheckbox.defaultProps = {
as: FormField,
control: Checkbox
};
export default FormCheckbox;