box-ui-elements-mlh
Version:
31 lines (29 loc) • 1.08 kB
JavaScript
import * as React from 'react';
import AccessibleSVG from '../accessible-svg';
var IconClose = function IconClose(_ref) {
var _ref$className = _ref.className,
className = _ref$className === void 0 ? '' : _ref$className,
_ref$color = _ref.color,
color = _ref$color === void 0 ? '#000000' : _ref$color,
_ref$height = _ref.height,
height = _ref$height === void 0 ? 24 : _ref$height,
title = _ref.title,
_ref$width = _ref.width,
width = _ref$width === void 0 ? 24 : _ref$width;
return /*#__PURE__*/React.createElement(AccessibleSVG, {
className: "icon-close ".concat(className),
height: height,
title: title,
viewBox: "0 0 24 24",
width: width
}, /*#__PURE__*/React.createElement("path", {
className: "fill-color",
d: "M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z",
fill: color
}), /*#__PURE__*/React.createElement("path", {
d: "M0 0h24v24H0z",
fill: "none"
}));
};
export default IconClose;
//# sourceMappingURL=IconClose.js.map