@semcore/icon
Version:
Semrush Icon Component
27 lines • 1.37 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 = '24',
height = '24',
viewBox = '0 0 24 24',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "Chrome",
"data-group": "l",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
d: "M8.48 7.141A6 6 0 0 0 6.3 10.13L3.413 5.132a10.985 10.985 0 0 1 17.8.868H12a6 6 0 0 0-3.52 1.14Zm9.489 4.24A5.97 5.97 0 0 0 16.463 8h5.781A10.97 10.97 0 0 1 12.6 22.97L17.192 15a5.97 5.97 0 0 0 .777-3.619Zm-4.741 6.489a5.992 5.992 0 0 1-6.42-2.875L2.203 7.019a10.973 10.973 0 0 0 8.148 15.839l2.877-4.988Z",
shapeRendering: "geometricPrecision"
}), /*#__PURE__*/React.createElement("path", {
d: "M16 11.97a4 4 0 1 1-8 0 4 4 0 0 1 8 0Z",
shapeRendering: "geometricPrecision"
}));
}
Chrome.displayName = 'Chrome';
export default createBaseComponent(Chrome);