@semcore/icon
Version:
Semrush Icon Component
30 lines • 1.36 kB
JavaScript
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
import React from 'react';
import { createBaseComponent } from '@semcore/core';
import Icon from '../../lib/esm/index.mjs';
function RootValue({
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"
}));
}
RootValue.displayName = 'Value';
const Value = createBaseComponent(RootValue);
export { Value as default };