metadata-based-explorer1
Version:
Box UI Elements
29 lines (27 loc) • 1.04 kB
JavaScript
import * as React from 'react';
import AccessibleSVG from '../accessible-svg';
import { bdlGray } from '../../styles/variables';
var IconAdd = function IconAdd(_ref) {
var _ref$className = _ref.className,
className = _ref$className === void 0 ? '' : _ref$className,
_ref$color = _ref.color,
color = _ref$color === void 0 ? bdlGray : _ref$color,
_ref$height = _ref.height,
height = _ref$height === void 0 ? 32 : _ref$height,
title = _ref.title,
_ref$width = _ref.width,
width = _ref$width === void 0 ? 32 : _ref$width;
return React.createElement(AccessibleSVG, {
className: "bdl-IconAdd ".concat(className),
height: height,
title: title,
viewBox: "0 0 32 32",
width: width
}, React.createElement("path", {
className: "fill-color",
d: "M18 14h9a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1h-9v9a1 1 0 0 1-1 1h-2a1 1 0 0 1-1-1v-9H5a1 1 0 0 1-1-1v-2a1 1 0 0 1 1-1h9V5a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v9z",
fill: color,
fillRule: "nonzero"
}));
};
export default IconAdd;