box-ui-elements
Version:
Box UI Elements
21 lines • 530 B
JavaScript
import * as React from 'react';
import AccessibleSVG from '../accessible-svg';
const IconPlus = ({
className = '',
color = '#000000',
height = 16,
title,
width = 16
}) => /*#__PURE__*/React.createElement(AccessibleSVG, {
className: `icon-plus ${className}`,
height: height,
title: title,
viewBox: "0 0 16 16",
width: width
}, /*#__PURE__*/React.createElement("path", {
d: "M5 5H2v2h3v3h2V7h3V5H7V2H5v3z",
fill: color,
fillRule: "evenodd"
}));
export default IconPlus;
//# sourceMappingURL=IconPlus.js.map