@momentum-ui/react
Version:
Cisco Momentum UI framework for ReactJs applications
34 lines (27 loc) • 1.5 kB
JavaScript
var _excluded = ["className", "onClick"];
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 close-icon */
import React from 'react';
import PropTypes from 'prop-types';
var CloseIcon = function CloseIcon(props) {
var className = props.className,
onClick = props.onClick,
otherHTMLProps = _objectWithoutPropertiesLoose(props, _excluded);
return /*#__PURE__*/React.createElement("button", _extends({
className: "md-close" + ("" + (className && " " + className || '')),
onClick: onClick
}, otherHTMLProps));
};
CloseIcon.defaultProps = {
onClick: function onClick() {},
className: ''
};
CloseIcon.propTypes = {
/** @prop Handler when the user clicks the CloseIcon | () => {} */
onClick: PropTypes.func,
/** @prop Optional css class string | '' */
className: PropTypes.string
};
CloseIcon.displayName = 'CloseIcon';
export default CloseIcon;