@semcore/icon
Version:
Semrush Icon Component
29 lines • 1.65 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 = '16',
height = '16',
viewBox = '0 0 16 16',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "ThumbUp",
"data-group": "m",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "m13.854 13.312 1.963-4.292C16.438 7.596 15.4 6 13.854 6H10l.734-2.527c.313-.889.08-1.792-.697-2.243-.732-.425-1.6-.225-2.198.404L4.32 4.808A4 4 0 0 0 3 7.778v3.858a2 2 0 0 0 .789 1.592l1.26.96a4 4 0 0 0 2.423.816h3.764c1.135 0 2.162-.646 2.618-1.692ZM5.66 6.292l2.944-2.656-.525 1.805A2 2 0 0 0 10 7.999h3.854a.12.12 0 0 1 .064.014.16.16 0 0 1 .053.052.173.173 0 0 1 .028.076.146.146 0 0 1-.012.072l-1.96 4.284-.006.016a.832.832 0 0 1-.785.49H7.472a2 2 0 0 1-1.211-.408L5 11.636V7.777a2 2 0 0 1 .66-1.485Z",
shapeRendering: "geometricPrecision"
}), /*#__PURE__*/React.createElement("path", {
d: "M1 5.999a1 1 0 0 0-1 1v5.004a1 1 0 0 0 2 0V6.999a1 1 0 0 0-1-1Z",
shapeRendering: "geometricPrecision"
}));
}
ThumbUp.displayName = 'ThumbUp';
export default createBaseComponent(ThumbUp);