@scaleflex/icons
Version:
SVG icons as React components
28 lines • 2.52 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 ShareFolder = 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": "ShareFolder",
ref: ref,
width: size,
height: size,
viewBox: "0 0 50 41",
fill: "none",
xmlns: "http://www.w3.org/2000/svg"
}, rest), /*#__PURE__*/React.createElement("path", {
d: "M42.5486 17.1706L36.0691 20.8423C36.0691 20.9503 36.0691 21.1663 36.0691 21.2743C36.0691 24.1901 33.6933 26.6739 30.7775 26.6739C27.8618 26.6739 25.378 24.2981 25.378 21.2743C25.378 18.3585 27.7538 15.9827 30.7775 15.9827C31.9654 15.9827 33.1533 16.4147 34.0173 17.0626L40.3888 13.3909C40.3888 13.1749 40.3888 12.959 40.3888 12.743V12.635H20.0864L19.1145 10.1512C18.0346 7.34341 16.3067 7.66738 15.7667 7.66738H0.971922C0.431965 7.66738 0 8.09935 0 8.6393V39.8488C0 40.3888 0.431965 40.8207 0.971922 40.8207H46.1123C46.6523 40.8207 47.0842 40.3888 47.0842 39.8488V17.9266C46.6523 18.0346 46.1123 18.1425 45.5724 18.1425C44.4924 18.1425 43.4125 17.8186 42.5486 17.1706Z",
fill: color
}), /*#__PURE__*/React.createElement("path", {
d: "M45.5724 8.53132C44.3844 8.53132 43.4125 8.96328 42.5486 9.71922L34.8812 5.29158C34.9892 4.9676 34.9892 4.64363 34.9892 4.31965C34.9892 1.94384 33.0454 0 30.7775 0C28.4017 0 26.4579 1.94384 26.4579 4.31965C26.4579 6.69546 28.4017 8.63931 30.7775 8.63931C31.9654 8.63931 33.1533 8.09936 33.9093 7.23543L41.6847 11.6631C41.5767 11.987 41.4687 12.419 41.4687 12.743V12.851C41.4687 13.2829 41.5767 13.7149 41.6847 14.0389L33.9093 18.4665C33.1533 17.6026 31.9654 17.0626 30.7775 17.0626C28.4017 17.0626 26.4579 19.0065 26.4579 21.2743C26.4579 23.6501 28.4017 25.594 30.7775 25.594C33.1533 25.594 34.9892 23.6501 34.9892 21.2743C34.9892 20.9503 34.9892 20.6264 34.8812 20.3024L42.6566 15.8747C43.4125 16.6307 44.4924 17.0626 45.6803 17.0626C46.2203 17.0626 46.6523 16.9546 47.1922 16.7387C48.8121 16.0907 50 14.5788 50 12.743C49.892 10.4752 47.9482 8.53132 45.5724 8.53132Z",
fill: color
}));
});
export default ShareFolder;