box-ui-elements-mlh
Version:
32 lines (30 loc) • 1.03 kB
JavaScript
import * as React from 'react';
import AccessibleSVG from '../accessible-svg';
var IconAddThin = function IconAddThin(_ref) {
var _ref$className = _ref.className,
className = _ref$className === void 0 ? '' : _ref$className,
_ref$color = _ref.color,
color = _ref$color === void 0 ? '#222222' : _ref$color,
_ref$height = _ref.height,
height = _ref$height === void 0 ? 17 : _ref$height,
title = _ref.title,
_ref$width = _ref.width,
width = _ref$width === void 0 ? 17 : _ref$width;
return /*#__PURE__*/React.createElement(AccessibleSVG, {
className: "icon-add-thin ".concat(className),
height: height,
title: title,
viewBox: "0 0 17 17",
width: width
}, /*#__PURE__*/React.createElement("path", {
className: "fill-color",
d: "M8 0h1v17H8z",
fill: color
}), /*#__PURE__*/React.createElement("path", {
className: "fill-color",
d: "M17 8v1H0V8z",
fill: color
}));
};
export default IconAddThin;
//# sourceMappingURL=IconAddThin.js.map