@scaleflex/icons
Version:
SVG icons as React components
30 lines • 2.51 kB
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
var _excluded = ["color", "size", "ref"];
import React from 'react';
export var Hand = function Hand(_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,
ref = _ref.ref,
rest = _objectWithoutProperties(_ref, _excluded);
return /*#__PURE__*/React.createElement("svg", _extends({
"data-icon-name": "Hand",
ref: ref,
width: size,
height: size,
viewBox: "0 0 38 50",
fill: "none",
xmlns: "http://www.w3.org/2000/svg"
}, rest), /*#__PURE__*/React.createElement("g", {
id: "Group"
}, /*#__PURE__*/React.createElement("g", {
id: "Group_2"
}, /*#__PURE__*/React.createElement("path", {
id: "Vector",
d: "M34.003 8C33.275 8 32.591 8.196 32.003 8.53799V8C32.003 5.796 30.209 4 28.003 4C27.275 4 26.591 4.196 26.003 4.53799V4C26.003 1.796 24.209 0 22.003 0C19.7971 0 18.003 1.796 18.003 4V4.53799C17.4151 4.196 16.7311 4 16.003 4C13.7971 4 12.003 5.796 12.003 8V28.82C12.003 29.086 11.7691 29.32 11.503 29.32C11.363 29.32 11.2431 29.27 11.255 29.3L7.34298 23.73C6.11095 21.964 3.53302 21.474 1.73097 22.72C0.840928 23.338 0.248935 24.2721 0.0589941 25.346C-0.127041 26.412 0.108994 27.482 0.717002 28.344L11.173 43.598C13.8271 47.548 18.529 50 23.443 50C31.471 50 38.0029 43.47 38.0029 35.44V12C38.003 9.796 36.209 8 34.003 8ZM23.443 48C19.185 48 15.121 45.886 12.829 42.476L2.35899 27.204C2.05099 26.766 1.93497 26.232 2.02901 25.692C2.12501 25.146 2.42501 24.672 2.87101 24.362C3.213 24.126 3.613 24 4.02296 24C4.70499 24 5.31495 24.318 5.70294 24.876L9.07091 29.6819L9.71095 30.564C10.159 31.0439 10.8129 31.3199 11.5029 31.3199C12.881 31.3199 14.0029 30.1999 14.0029 28.8199V8C14.0029 6.89805 14.901 6 16.0029 6C17.1049 6 18.0029 6.89795 18.0029 8V23C18.0029 23.554 18.451 24 19.0029 24C19.5549 24 20.0029 23.554 20.0029 23V4C20.0029 2.89805 20.901 2 22.0029 2C23.1049 2 24.0029 2.89805 24.0029 4V23C24.0029 23.554 24.451 24 25.0029 24C25.5549 24 26.0029 23.554 26.0029 23V8C26.0029 6.89805 26.9009 6 28.0029 6C29.105 6 30.0029 6.89795 30.0029 8V25C30.0029 25.554 30.451 26 31.0029 26C31.5549 26 32.0029 25.554 32.0029 25V12C32.0029 10.898 32.9009 10 34.0029 10C35.105 10 36.0029 10.8979 36.0029 12V35.44C36.003 42.366 30.3691 48 23.443 48Z",
fill: color
}))));
};
export default Hand;