@semcore/icon
Version:
Semrush Icon Component
29 lines • 1.63 kB
JavaScript
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
import React from 'react';
import { createBaseComponent } from '@semcore/core';
import Icon from '@semcore/icon';
function ThumbUp({
width = '24',
height = '24',
viewBox = '0 0 24 24',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "ThumbUp",
"data-group": "l",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "m19.882 19.604 2.86-6.405c.869-1.984-.583-4.207-2.748-4.207h-5.986l1.617-3.545a2.414 2.414 0 0 0-4.052-2.561l-5.51 5.957A4 4 0 0 0 5 11.559v7.79a1 1 0 0 0 .553.895l2.665 1.333a4 4 0 0 0 1.79.423h6.21a4 4 0 0 0 3.664-2.396Zm-6.066-15.01-.006.012-1.622 3.556a2 2 0 0 0 1.82 2.83h5.986c.718 0 1.205.737.918 1.4l-2.86 6.403-.002.007A2 2 0 0 1 16.218 20h-6.21a2 2 0 0 1-.896-.211L7 18.732v-7.173a2 2 0 0 1 .532-1.358l5.55-6.002.039-.047a.414.414 0 0 1 .527-.096c.187.107.26.342.168.538Z",
shapeRendering: "geometricPrecision"
}), /*#__PURE__*/React.createElement("path", {
d: "M2 9.993a1 1 0 0 0-1 1v8.006a1 1 0 1 0 2 0v-8.006a1 1 0 0 0-1-1Z",
shapeRendering: "geometricPrecision"
}));
}
ThumbUp.displayName = 'ThumbUp';
export default createBaseComponent(ThumbUp);