@scaleflex/icons
Version:
SVG icons as React components
25 lines • 1.35 kB
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
var _excluded = ["color", "size"];
import React from 'react';
import { intrinsicComponent } from './utils/functions';
export var AddFolder = intrinsicComponent(function (_ref, ref) {
var _ref$color = _ref.color,
color = _ref$color === void 0 ? 'currentColor' : _ref$color,
_ref$size = _ref.size,
size = _ref$size === void 0 ? 14 : _ref$size,
rest = _objectWithoutProperties(_ref, _excluded);
return /*#__PURE__*/React.createElement("svg", _extends({
"data-icon-name": "AddFolder",
ref: ref,
width: size * (51 / 41),
height: size,
viewBox: "0 0 51 41",
fill: "none",
xmlns: "http://www.w3.org/2000/svg"
}, rest), /*#__PURE__*/React.createElement("path", {
d: "M49.2264 5.25088H21.5535L20.5052 2.63034C19.2474 -0.304672 17.5702 0.00979303 16.9413 0.00979303H1.32285C0.798737 0.00979303 0.274628 0.533902 0.274628 1.05801V39.4228C0.274628 39.9469 0.798737 40.471 1.32285 40.471H49.2264C49.7505 40.471 50.2746 39.9469 50.2746 39.4228V6.2991C50.2746 5.77499 49.7505 5.25088 49.2264 5.25088ZM44.4046 24.9574H37.1719V32.5046H33.8176V24.9574H26.5849V21.7079H33.8176V14.1607H37.1719V21.7079H44.4046V24.9574Z",
fill: color
}));
});
export default AddFolder;