@react95/icons
Version:
React95 icons gallery
72 lines • 3.31 kB
JavaScript
var _excluded = ["variant"];
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); }
import React from 'react';
var Hand_32x32_4 = function Hand_32x32_4(props) {
return /*#__PURE__*/React.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.createElement("path", {
stroke: "navy",
d: "M0 21h8m-8 3h8m-8 1h8m-8 1h8m-8 1h8m-8 1h8m-8 1h8"
}), /*#__PURE__*/React.createElement("path", {
stroke: "#00f",
d: "M0 22h8m-8 1h8"
}), /*#__PURE__*/React.createElement("path", {
stroke: "#000",
d: "M8 22h1m-1 1h1m-1 1h1m-1 1h1m11 0h2M8 26h1m7 0h1m5 0h1M8 27h1m8 0h6M8 28h3m10 0h6M8 29h1m2 0h1m14 0h1M0 30h8m4 0h2m10 0h2m-12 1h10"
}), /*#__PURE__*/React.createElement("path", {
stroke: "gray",
d: "M9 23h9m0 1h2m-2 4h3m4 1h1m-12 1h10"
}), /*#__PURE__*/React.createElement("path", {
stroke: "silver",
d: "M9 24h1m-1 1h1m-1 1h1m-1 1h3m-1 1h3m-2 1h4m8 0h1"
}), /*#__PURE__*/React.createElement("path", {
stroke: "#fff",
d: "M10 24h8m-8 1h10m-10 1h6m1 0h5m-10 1h5m-3 1h4m-2 1h8"
}));
};
var Hand_16x16_4 = function Hand_16x16_4(props) {
return /*#__PURE__*/React.createElement("svg", _extends({
xmlns: "http://www.w3.org/2000/svg",
width: "16",
height: "16",
shapeRendering: "crispEdges",
viewBox: "0 -0.5 16 16"
}, props), /*#__PURE__*/React.createElement("path", {
stroke: "navy",
d: "M0 9h4m-4 2h4m-4 1h4m-4 1h4"
}), /*#__PURE__*/React.createElement("path", {
stroke: "#00f",
d: "M0 10h4"
}), /*#__PURE__*/React.createElement("path", {
stroke: "#000",
d: "M4 10h1m-1 1h1m4 0h1m-6 1h1m3 0h1m1 0h1m-7 1h2m3 0h4M0 14h5m1 0h1m5 0h1m-6 1h5"
}), /*#__PURE__*/React.createElement("path", {
stroke: "gray",
d: "M5 10h4m2 4h1"
}), /*#__PURE__*/React.createElement("path", {
stroke: "silver",
d: "M5 11h1m-1 1h1m3 0h1m-4 1h1m0 1h4"
}), /*#__PURE__*/React.createElement("path", {
stroke: "#fff",
d: "M6 11h3m-3 1h2m-1 1h2"
}));
};
export var handData = {
'32x32_4': Hand_32x32_4,
'16x16_4': Hand_16x16_4
};
var HandComponent = function HandComponent(_ref) {
var _ref$variant = _ref.variant,
variant = _ref$variant === void 0 ? '32x32_4' : _ref$variant,
rest = _objectWithoutProperties(_ref, _excluded);
var Svg = handData[variant];
return /*#__PURE__*/React.createElement(Svg, rest);
};
export var Hand = /*#__PURE__*/React.memo(HandComponent);
Hand.displayName = 'Hand';