47 lines
1.4 KiB
JavaScript
47 lines
1.4 KiB
JavaScript
|
|
import _extends from "@babel/runtime-corejs2/helpers/esm/extends";
|
||
|
|
import _objectWithoutPropertiesLoose from "@babel/runtime-corejs2/helpers/esm/objectWithoutPropertiesLoose";
|
||
|
|
import _inheritsLoose from "@babel/runtime-corejs2/helpers/esm/inheritsLoose";
|
||
|
|
import classNames from 'classnames';
|
||
|
|
import React from 'react';
|
||
|
|
import elementType from 'prop-types-extra/lib/elementType';
|
||
|
|
import { bsClass, getClassSet, splitBsProps } from './utils/bootstrapUtils';
|
||
|
|
var propTypes = {
|
||
|
|
componentClass: elementType
|
||
|
|
};
|
||
|
|
var defaultProps = {
|
||
|
|
componentClass: 'div'
|
||
|
|
};
|
||
|
|
|
||
|
|
var Row =
|
||
|
|
/*#__PURE__*/
|
||
|
|
function (_React$Component) {
|
||
|
|
_inheritsLoose(Row, _React$Component);
|
||
|
|
|
||
|
|
function Row() {
|
||
|
|
return _React$Component.apply(this, arguments) || this;
|
||
|
|
}
|
||
|
|
|
||
|
|
var _proto = Row.prototype;
|
||
|
|
|
||
|
|
_proto.render = function render() {
|
||
|
|
var _this$props = this.props,
|
||
|
|
Component = _this$props.componentClass,
|
||
|
|
className = _this$props.className,
|
||
|
|
props = _objectWithoutPropertiesLoose(_this$props, ["componentClass", "className"]);
|
||
|
|
|
||
|
|
var _splitBsProps = splitBsProps(props),
|
||
|
|
bsProps = _splitBsProps[0],
|
||
|
|
elementProps = _splitBsProps[1];
|
||
|
|
|
||
|
|
var classes = getClassSet(bsProps);
|
||
|
|
return React.createElement(Component, _extends({}, elementProps, {
|
||
|
|
className: classNames(className, classes)
|
||
|
|
}));
|
||
|
|
};
|
||
|
|
|
||
|
|
return Row;
|
||
|
|
}(React.Component);
|
||
|
|
|
||
|
|
Row.propTypes = propTypes;
|
||
|
|
Row.defaultProps = defaultProps;
|
||
|
|
export default bsClass('row', Row);
|