mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-22 16:35:14 +00:00
44 lines
1.4 KiB
JavaScript
44 lines
1.4 KiB
JavaScript
import _extends from "@babel/runtime/helpers/esm/extends";
|
|
import _objectWithoutPropertiesLoose from "@babel/runtime/helpers/esm/objectWithoutPropertiesLoose";
|
|
import React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import classNames from 'classnames';
|
|
import { mapToCssModules, tagPropType } from './utils';
|
|
var propTypes = {
|
|
children: PropTypes.node,
|
|
row: PropTypes.bool,
|
|
check: PropTypes.bool,
|
|
inline: PropTypes.bool,
|
|
disabled: PropTypes.bool,
|
|
tag: tagPropType,
|
|
className: PropTypes.string,
|
|
cssModule: PropTypes.object
|
|
};
|
|
var defaultProps = {
|
|
tag: 'div'
|
|
};
|
|
|
|
var FormGroup = function FormGroup(props) {
|
|
var className = props.className,
|
|
cssModule = props.cssModule,
|
|
row = props.row,
|
|
disabled = props.disabled,
|
|
check = props.check,
|
|
inline = props.inline,
|
|
Tag = props.tag,
|
|
attributes = _objectWithoutPropertiesLoose(props, ["className", "cssModule", "row", "disabled", "check", "inline", "tag"]);
|
|
|
|
var classes = mapToCssModules(classNames(className, row ? 'row' : false, check ? 'form-check' : 'form-group', check && inline ? 'form-check-inline' : false, check && disabled ? 'disabled' : false), cssModule);
|
|
|
|
if (Tag === 'fieldset') {
|
|
attributes.disabled = disabled;
|
|
}
|
|
|
|
return /*#__PURE__*/React.createElement(Tag, _extends({}, attributes, {
|
|
className: classes
|
|
}));
|
|
};
|
|
|
|
FormGroup.propTypes = propTypes;
|
|
FormGroup.defaultProps = defaultProps;
|
|
export default FormGroup; |