@scaleflex/icons
Version:
SVG icons as React components
25 lines • 1.16 kB
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
var _excluded = ["color", "size", "ref"];
import React from 'react';
export var Folder = function Folder(_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,
ref = _ref.ref,
rest = _objectWithoutProperties(_ref, _excluded);
return /*#__PURE__*/React.createElement("svg", _extends({
"data-icon-name": "Folder",
ref: ref,
width: size,
height: size,
viewBox: "0 0 50 50",
fill: "none",
xmlns: "http://www.w3.org/2000/svg"
}, rest), /*#__PURE__*/React.createElement("path", {
d: "M49.2267 10.1898H21.5537L20.5055 7.59973C19.2476 4.69887 17.5705 5.00968 16.9416 5.00968H1.32312C0.694189 5.00968 0.274902 5.52769 0.274902 6.0457V11.2258V13.7122V43.964C0.274902 44.482 0.694189 45 1.32312 45H49.2267C49.7508 45 50.2749 44.482 50.2749 43.964V11.2258C50.2749 10.7078 49.7508 10.1898 49.2267 10.1898Z",
fill: color
}));
};
export default Folder;