@semcore/icon
Version:
Semrush Icon Component
26 lines • 1.39 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 = '16',
height = '16',
viewBox = '0 0 16 16',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "GoogleGenerativeAI",
"data-group": "m",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
d: "M16 8.038c0-2.174-1.828-3.982-4.002-3.96C12.061 1.875 10.243 0 8.038 0c-2.204 0-4.023 1.877-3.96 4.079C1.878 4.015 0 5.834 0 8.039c0 2.204 1.876 4.022 4.077 3.96C4.056 14.171 5.864 16 8.038 16c2.175 0 3.983-1.827 3.962-4 2.173.02 4-1.787 4-3.962ZM2.655 8A6.97 6.97 0 0 0 8 2.655 6.97 6.97 0 0 0 13.345 8 6.97 6.97 0 0 0 8 13.345 6.97 6.97 0 0 0 2.655 8Z",
clipRule: "evenodd",
shapeRendering: "geometricPrecision"
}));
}
GoogleGenerativeAI.displayName = 'GoogleGenerativeAI';
export default createBaseComponent(GoogleGenerativeAI);