optimall-icons
Version:
Biblioteca de ícones do Optimall
33 lines • 2.31 kB
JavaScript
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, { forwardRef } from 'react';
export const HandCreditIcon = /*#__PURE__*/forwardRef(({
className,
style,
ariaLabel,
size = 24,
width,
height,
...props
}, ref) => {
const iconSize = width || height || size;
return /*#__PURE__*/React.createElement("svg", _extends({
ref: ref,
className: className,
"aria-label": ariaLabel || "hand, credit",
style: style,
width: width || iconSize,
height: height || iconSize,
viewBox: "0 0 24 24",
fill: "currentColor",
xmlns: "http://www.w3.org/2000/svg"
}, props), /*#__PURE__*/React.createElement("path", {
d: "M6.25 9a7.75 7.75 0 1 1 14.11 4.43.75.75 0 0 1-1.23-.86 6.25 6.25 0 1 0-10.78-.893.75.75 0 0 1-1.354.645A7.723 7.723 0 0 1 6.25 9Z"
}), /*#__PURE__*/React.createElement("path", {
d: "M14 4.25a.75.75 0 0 1 .75.75v.583h.813c.976 0 1.687.83 1.687 1.75V8c0 .362-.11.71-.303 1 .193.29.303.638.303 1v.667c0 .92-.71 1.75-1.688 1.75h-.812V13a.75.75 0 0 1-1.5 0v-.583H11.5a.75.75 0 0 1 0-1.5h.188V7.083H11.5a.75.75 0 0 1 0-1.5h1.75V5a.75.75 0 0 1 .75-.75Zm-.813 2.833V8.25h2.376c.058 0 .187-.066.187-.25v-.667c0-.184-.129-.25-.188-.25h-2.374Zm0 2.667v1.167h2.376c.058 0 .187-.066.187-.25V10c0-.184-.129-.25-.188-.25h-2.374Z",
fillRule: "evenodd",
clipRule: "evenodd"
}), /*#__PURE__*/React.createElement("path", {
d: "M3 13.25a.75.75 0 0 0 0 1.5h2.395c.182 0 .36.041.52.119l2.043.988c.365.177.767.268 1.174.268h1.042c.427 0 .777.228.953.547l-1.934.535c-.28.077-.582.05-.841-.076l-2.183-1.056a.75.75 0 1 0-.653 1.35l2.183 1.056a2.702 2.702 0 0 0 1.894.171l2.54-.702a.839.839 0 0 0 .617-.808l-.001-.087 4.064-1.25h.003a1.236 1.236 0 0 1 1.373.476c.116.161.056.382-.085.464l-7.516 4.336a1.244 1.244 0 0 1-.98.118L3.215 19.3a.75.75 0 1 0-.427 1.438l6.395 1.898c.724.215 1.5.121 2.156-.257l7.516-4.336c.933-.539 1.173-1.78.551-2.64a2.735 2.735 0 0 0-3.034-1.032h-.001l-4.127 1.269a2.602 2.602 0 0 0-2.069-1.016H9.132c-.182 0-.36-.04-.521-.118l-2.042-.989a2.696 2.696 0 0 0-1.174-.268H3Z"
}));
});
export default HandCreditIcon;