@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 ThumbDown({
width = '24',
height = '24',
viewBox = '0 0 24 24',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "ThumbDown",
"data-group": "l",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "m19.882 4.396 2.86 6.405c.869 1.984-.583 4.207-2.748 4.207h-5.986l1.617 3.545a2.414 2.414 0 0 1-4.052 2.561l-5.51-5.957A4 4 0 0 1 5 12.441v-7.79a1 1 0 0 1 .553-.895l2.665-1.333A4 4 0 0 1 10.008 2h6.21a4 4 0 0 1 3.664 2.396Zm-6.066 15.01-.006-.011-1.622-3.557a2 2 0 0 1 1.82-2.83h5.986c.718 0 1.205-.737.918-1.4l-2.86-6.403-.002-.007A2 2 0 0 0 16.218 4h-6.21a2 2 0 0 0-.896.211L7 5.268v7.173a2 2 0 0 0 .532 1.358l5.55 6.002.039.047a.414.414 0 0 0 .527.096.417.417 0 0 0 .168-.538Z",
shapeRendering: "geometricPrecision"
}), /*#__PURE__*/React.createElement("path", {
d: "M2 14.007a1 1 0 0 1-1-1V5.001a1 1 0 0 1 2 0v8.006a1 1 0 0 1-1 1Z",
shapeRendering: "geometricPrecision"
}));
}
ThumbDown.displayName = 'ThumbDown';
export default createBaseComponent(ThumbDown);