@semcore/icon
Version:
Semrush Icon Component
33 lines • 1.57 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 Chrome({
width = '16',
height = '16',
viewBox = '0 0 16 16',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "Chrome",
"data-group": "m",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
d: "M5.467 4.905A4 4 0 0 0 4.08 7.21L1.698 3.084A7.984 7.984 0 0 1 14.921 4H8a4 4 0 0 0-2.533.905Z",
shapeRendering: "geometricPrecision"
}), /*#__PURE__*/React.createElement("path", {
d: "M11 8a3 3 0 1 1-6 0 3 3 0 0 1 6 0Z",
shapeRendering: "geometricPrecision"
}), /*#__PURE__*/React.createElement("path", {
d: "M10.62 5a3.925 3.925 0 0 1 .83 4.992l.014.008L8 16a7.992 7.992 0 0 0 7.413-11H10.62Z",
shapeRendering: "geometricPrecision"
}), /*#__PURE__*/React.createElement("path", {
d: "M6.592 11.752a3.907 3.907 0 0 0 2.696.017l-2.394 4.146A7.984 7.984 0 0 1 1.075 4.006L4.536 10l.014-.008a3.906 3.906 0 0 0 2.042 1.76Z",
shapeRendering: "geometricPrecision"
}));
}
Chrome.displayName = 'Chrome';
export default createBaseComponent(Chrome);