@momentum-ui/react
Version:
Cisco Momentum UI framework for ReactJs applications
38 lines (30 loc) • 1.67 kB
JavaScript
var _excluded = ["children", "className", "position"];
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
/** @component input */
import React from 'react';
import PropTypes from 'prop-types';
var InputSection = function InputSection(props) {
var children = props.children,
className = props.className,
position = props.position,
otherProps = _objectWithoutPropertiesLoose(props, _excluded);
return /*#__PURE__*/React.createElement("span", _extends({
className: "md-input__" + position + ("" + (className && " " + className || ''))
}, otherProps), children);
};
InputSection.propTypes = {
/** @prop Children nodes to render inside InputSection | null */
children: PropTypes.node,
/** @prop Optional css class name | '' */
className: PropTypes.string,
/** @prop Determine the InputSection's position | 'before' */
position: PropTypes.oneOf(['before', 'after'])
};
InputSection.defaultProps = {
children: null,
className: '',
position: 'before'
};
InputSection.displayName = 'InputSection';
export default InputSection;