@semcore/icon
Version:
Semrush Icon Component
29 lines • 1.38 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 Value({
width = '24',
height = '24',
viewBox = '0 0 24 24',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "Value",
"data-group": "l",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "M10 5H6.993L1 13.173V16h7v2a1 1 0 1 0 2 0v-2h1a1 1 0 1 0 0-2h-1V5ZM8 7.01V14H3l5-6.99Z",
shapeRendering: "geometricPrecision"
}), /*#__PURE__*/React.createElement("path", {
d: "M14 9c.552 0 .98-.474 1.245-.959A2 2 0 0 1 17 7.001L17.785 7c2.374 0 3.489 2.933 1.715 4.51L13 17v2h9a1 1 0 1 0 0-2h-5.87l4.699-3.995C23.977 10.206 21.998 5 17.785 5H17a4.002 4.002 0 0 0-3.877 3.01c-.136.535.325.99.877.99Z",
shapeRendering: "geometricPrecision"
}));
}
Value.displayName = 'Value';
export default createBaseComponent(Value);