@semcore/icon
Version:
Semrush Icon Component
26 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 Jewelry({
width = '24',
height = '24',
viewBox = '0 0 24 24',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "Jewelry",
"data-group": "l",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "M6.496 2a1 1 0 0 0-.798.398L1.2 8.357a.998.998 0 0 0 .03 1.239l10 12.043a1 1 0 0 0 1.539 0l10-12.039a.998.998 0 0 0 .028-1.24l-4.503-5.963A1 1 0 0 0 17.497 2H6.496Zm.498 1.998L3.974 8h3.304l1.334-4.002H6.994Zm3.726 0L9.386 8h5.226l-1.335-4.002H10.72Zm4.665 0L16.72 8h3.301L17 3.998h-1.613ZM14.63 10h-5.26l2.63 8.219L14.629 10Zm-7.36 0H4.164l5.052 6.084L7.269 10Zm7.51 6.091L16.73 10h3.11l-5.06 6.091Z",
shapeRendering: "geometricPrecision"
}));
}
Jewelry.displayName = 'Jewelry';
export default createBaseComponent(Jewelry);