@semcore/icon
Version:
Semrush Icon Component
29 lines • 1.66 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 = '16',
height = '16',
viewBox = '0 0 16 16',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "ThumbDown",
"data-group": "m",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "m13.854 2.695 1.963 4.292c.621 1.425-.417 3.021-1.963 3.021H10l.734 2.528c.313.888.08 1.791-.697 2.243-.732.425-1.6.224-2.198-.404L4.32 11.2A4 4 0 0 1 3 8.23V4.371a2 2 0 0 1 .789-1.591l1.26-.96a4 4 0 0 1 2.423-.816h3.764c1.135 0 2.162.646 2.618 1.691ZM5.66 9.715l2.944 2.656-.525-1.804A2 2 0 0 1 10 8.009h3.854a.12.12 0 0 0 .064-.015.16.16 0 0 0 .053-.052.173.173 0 0 0 .028-.076.146.146 0 0 0-.012-.071l-1.96-4.284-.006-.017a.832.832 0 0 0-.785-.49H7.472a2 2 0 0 0-1.211.408L5 4.372V8.23a2 2 0 0 0 .66 1.485Z",
shapeRendering: "geometricPrecision"
}), /*#__PURE__*/React.createElement("path", {
d: "M1 10.008a1 1 0 0 1-1-1V4.006a1 1 0 0 1 2 0V9.01a1 1 0 0 1-1 1Z",
shapeRendering: "geometricPrecision"
}));
}
ThumbDown.displayName = 'ThumbDown';
export default createBaseComponent(ThumbDown);