@scaleflex/icons
Version:
SVG icons as React components
25 lines • 3.51 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 BoxApp = 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": "BoxApp",
ref: ref,
width: size,
height: size,
viewBox: "0 0 50 27",
fill: "none",
xmlns: "http://www.w3.org/2000/svg"
}, rest), /*#__PURE__*/React.createElement("path", {
d: "M25.8089 7.85784C24.1148 7.85739 22.4526 8.31851 21.0008 9.19168C19.549 10.0648 18.3626 11.3171 17.5689 12.8138C16.937 11.6236 16.0548 10.5844 14.983 9.76764C13.9112 8.95088 12.6752 8.37593 11.36 8.08233C10.0449 7.78873 8.68173 7.78345 7.36433 8.06684C6.04693 8.35023 4.80653 8.91558 3.72842 9.72401V1.86483C3.72842 1.37041 3.53202 0.896234 3.18241 0.546626C2.8328 0.197019 2.35863 0.000610352 1.86421 0.000610352C1.36979 0.000610352 0.895624 0.197019 0.546016 0.546626C0.196408 0.896234 0 1.37041 0 1.86483V17.34C0.0340108 19.4085 0.75467 21.407 2.04862 23.0211C3.34257 24.6352 5.13639 25.7734 7.14791 26.2566C9.15942 26.7398 11.2745 26.5406 13.1604 25.6903C15.0464 24.8401 16.5961 23.387 17.566 21.5597C18.3402 23.0187 19.4879 24.2459 20.8919 25.1161C22.2958 25.9862 23.9056 26.468 25.5567 26.5123C27.2078 26.5565 28.841 26.1615 30.2895 25.3678C31.738 24.5741 32.9498 23.41 33.801 21.9945C34.6522 20.5791 35.1124 18.963 35.1345 17.3114C35.1566 15.6598 34.7398 14.032 33.9267 12.5943C33.1136 11.1566 31.9333 9.96056 30.5066 9.12839C29.0798 8.29622 27.4577 7.85777 25.806 7.85784M9.32692 22.7794C8.22074 22.7794 7.13938 22.4514 6.21958 21.8369C5.29978 21.2224 4.58283 20.3489 4.15938 19.327C3.73592 18.3051 3.62498 17.1805 3.84057 16.0956C4.05617 15.0106 4.58862 14.0139 5.37061 13.2315C6.15259 12.4491 7.149 11.9161 8.23387 11.7C9.31873 11.4838 10.4433 11.5942 11.4655 12.0171C12.4876 12.44 13.3614 13.1565 13.9764 14.076C14.5914 14.9954 14.92 16.0766 14.9205 17.1828C14.9203 18.6664 14.3309 20.0892 13.282 21.1385C12.2331 22.1878 10.8105 22.7786 9.32692 22.7794ZM25.8089 22.7784C24.7028 22.7782 23.6215 22.45 22.7018 21.8353C21.7821 21.2207 21.0653 20.3471 20.642 19.3251C20.2187 18.3031 20.108 17.1786 20.3238 16.0936C20.5395 15.0087 21.0722 14.0121 21.8543 13.2298C22.6364 12.4476 23.6329 11.9148 24.7178 11.6988C25.8027 11.4828 26.9273 11.5934 27.9494 12.0165C28.9715 12.4396 29.8451 13.1562 30.46 14.0758C31.0748 14.9954 31.4032 16.0766 31.4035 17.1828C31.4035 18.6667 30.8141 20.0898 29.765 21.1391C28.7158 22.1885 27.2928 22.7781 25.8089 22.7784ZM49.6082 23.3916C50.2507 24.2158 50.0662 25.3603 49.1804 25.9726C48.2947 26.5849 47.0487 26.4287 46.3622 25.6299L42.0009 20.2843L37.6397 25.6299C36.9561 26.4287 35.7081 26.5849 34.8234 25.9726C33.9386 25.3603 33.7541 24.2149 34.3996 23.3916L39.4668 17.1721L34.3996 10.9408C33.7541 10.1185 33.9396 8.9711 34.8234 8.36076C35.7071 7.75042 36.96 7.90374 37.6397 8.7006L42.0029 14.053L46.37 8.7006C46.7181 8.31092 47.1962 8.06146 47.715 7.99891C48.2337 7.93635 48.7575 8.065 49.1883 8.36076C50.074 8.97012 50.2625 10.1185 49.617 10.9408L44.539 17.1721L49.6082 23.3916Z",
fill: color
}));
});
export default BoxApp;