@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 GoogleGenerativeAI({
width = '24',
height = '24',
viewBox = '0 0 24 24',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "GoogleGenerativeAI",
"data-group": "l",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
d: "M22 12.048c0-2.718-2.284-4.979-5.002-4.952C17.077 4.345 14.803 2 12.048 2c-2.756 0-5.03 2.346-4.95 5.098C4.346 7.018 2 9.292 2 12.048c0 2.755 2.345 5.029 5.096 4.95C7.07 19.716 9.33 22 12.048 22s4.978-2.283 4.952-5c2.717.026 5-2.234 5-4.952ZM5.318 12A8.713 8.713 0 0 0 12 5.318 8.713 8.713 0 0 0 18.682 12 8.713 8.713 0 0 0 12 18.682 8.713 8.713 0 0 0 5.318 12Z",
clipRule: "evenodd",
shapeRendering: "geometricPrecision"
}));
}
GoogleGenerativeAI.displayName = 'GoogleGenerativeAI';
export default createBaseComponent(GoogleGenerativeAI);