@scaleflex/icons
Version:
SVG icons as React components
28 lines • 2.55 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 Remove = 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": "Remove",
ref: ref,
width: size,
height: size,
viewBox: "0 0 41 50",
fill: "none",
xmlns: "http://www.w3.org/2000/svg"
}, rest), /*#__PURE__*/React.createElement("path", {
d: "M36.53 6.1H28.05V4.63C28.05 3.40205 27.5622 2.22439 26.6939 1.3561C25.8256 0.487802 24.648 0 23.42 0H16.82C16.2125 -1.42319e-06 15.6109 0.119829 15.0497 0.352631C14.4885 0.585433 13.9788 0.926634 13.5496 1.3567C13.1205 1.78677 12.7804 2.29725 12.5488 2.85893C12.3172 3.42061 12.1987 4.02245 12.2 4.63V6.1H3.91C2.87473 6.1 1.88172 6.51057 1.14874 7.24167C0.415762 7.97278 0.00264774 8.96474 0 10V13.09C0 13.4984 0.16225 13.8901 0.451056 14.1789C0.739862 14.4678 1.13157 14.63 1.54 14.63H38.7C39.1084 14.63 39.5001 14.4678 39.7889 14.1789C40.0778 13.8901 40.24 13.4984 40.24 13.09V10C40.2893 9.49183 40.2288 8.979 40.0624 8.4963C39.8961 8.0136 39.6279 7.57233 39.276 7.20241C38.9241 6.8325 38.4968 6.5426 38.023 6.35239C37.5492 6.16218 37.04 6.0761 36.53 6.1ZM15.85 5C15.8655 4.7994 15.9223 4.60418 16.0169 4.42658C16.1114 4.24898 16.2417 4.09284 16.3994 3.96795C16.5572 3.84307 16.739 3.75214 16.9336 3.70086C17.1281 3.64959 17.3312 3.63908 17.53 3.67H23.7C24.52 3.45 25.24 4.17 25.61 5V7.32H15.85V5Z",
fill: color
}), /*#__PURE__*/React.createElement("path", {
d: "M38 17.58L36.78 45.58C36.726 46.7642 36.2179 47.882 35.3613 48.7014C34.5047 49.5208 33.3654 49.9787 32.18 49.98H8.85C7.66461 49.9787 6.52529 49.5208 5.66868 48.7014C4.81207 47.882 4.304 46.7642 4.25 45.58L3 17.58C2.99717 17.5123 3.00843 17.4447 3.03306 17.3815C3.05769 17.3184 3.09516 17.261 3.14309 17.2131C3.19102 17.1652 3.24838 17.1277 3.31154 17.1031C3.37469 17.0784 3.44227 17.0672 3.51 17.07H37.48C37.5489 17.0641 37.6183 17.0731 37.6834 17.0965C37.7485 17.1199 37.8078 17.1571 37.8572 17.2056C37.9065 17.254 37.9449 17.3125 37.9695 17.3772C37.9942 17.4418 38.0046 17.511 38 17.58Z",
fill: color
}));
});
export default Remove;