@semcore/icon
Version:
Semrush Icon Component
26 lines • 1.4 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 RelatedProducts({
width = '16',
height = '16',
viewBox = '0 0 16 16',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "RelatedProducts",
"data-group": "m",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "M2 1a1 1 0 0 1 1-1h1.8A1.2 1.2 0 0 1 6 1.2v.801h5.744a1.2 1.2 0 0 1 1.164 1.492l-.9 3.602a1.2 1.2 0 0 1-1.164.91H5.2A1.2 1.2 0 0 1 4 6.803V2.002H3A1 1 0 0 1 2 1Zm4 7.004a1 1 0 1 1 0 2.001 1 1 0 0 1 0-2Zm4 0a1 1 0 1 1 0 2.001 1 1 0 0 1 0-2ZM6 4.002v2.001h4.22l.5-2H6Zm-4 8.005a1 1 0 0 1 1-1h10a1 1 0 0 1 0 2H3a1 1 0 0 1-1-1Zm0 2.992a1 1 0 0 1 1-1h7A1 1 0 0 1 10 16H3a1 1 0 0 1-1-1Z",
shapeRendering: "geometricPrecision"
}));
}
RelatedProducts.displayName = 'RelatedProducts';
export default createBaseComponent(RelatedProducts);