@react95/icons
Version:
React95 icons gallery
36 lines (35 loc) • 2.12 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.arrowRightData = exports.ArrowRight = void 0;
var _react = _interopRequireDefault(require("react"));
var _excluded = ["variant"];
function _interopRequireDefault(e) { return e && e.__esModule ? e : { "default": e }; }
function _objectWithoutProperties(e, t) { if (null == e) return {}; var o, r, i = _objectWithoutPropertiesLoose(e, t); if (Object.getOwnPropertySymbols) { var n = Object.getOwnPropertySymbols(e); for (r = 0; r < n.length; r++) o = n[r], -1 === t.indexOf(o) && {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]); } return i; }
function _objectWithoutPropertiesLoose(r, e) { if (null == r) return {}; var t = {}; for (var n in r) if ({}.hasOwnProperty.call(r, n)) { if (-1 !== e.indexOf(n)) continue; t[n] = r[n]; } return t; }
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
var ArrowRight_32x32_4 = function ArrowRight_32x32_4(props) {
return /*#__PURE__*/_react["default"].createElement("svg", _extends({
xmlns: "http://www.w3.org/2000/svg",
width: "32",
height: "32",
shapeRendering: "crispEdges",
viewBox: "0 -0.5 32 32"
}, props), /*#__PURE__*/_react["default"].createElement("path", {
stroke: "#000",
d: "M20 10h1m-1 1h2m-2 1h3m-3 1h4M6 14h19M6 15h20M6 16h20M6 17h19m-5 1h4m-4 1h3m-3 1h2m-2 1h1"
}));
};
var arrowRightData = exports.arrowRightData = {
'32x32_4': ArrowRight_32x32_4
};
var ArrowRightComponent = function ArrowRightComponent(_ref) {
var _ref$variant = _ref.variant,
variant = _ref$variant === void 0 ? '32x32_4' : _ref$variant,
rest = _objectWithoutProperties(_ref, _excluded);
var Svg = arrowRightData[variant];
return /*#__PURE__*/_react["default"].createElement(Svg, rest);
};
var ArrowRight = exports.ArrowRight = /*#__PURE__*/_react["default"].memo(ArrowRightComponent);
ArrowRight.displayName = 'ArrowRight';