@semcore/icon
Version:
Semrush Icon Component
27 lines • 1.96 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 ChatAI({
width = '24',
height = '24',
viewBox = '0 0 24 24',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "ChatAI",
"data-group": "l",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
d: "M19.4 1.279a.427.427 0 0 0-.8 0l-.812 2.194a.533.533 0 0 1-.316.315L15.28 4.6a.427.427 0 0 0 0 .8l2.194.812c.146.054.26.17.315.316L18.6 8.72a.427.427 0 0 0 .8 0l.812-2.194a.533.533 0 0 1 .316-.315L22.72 5.4a.427.427 0 0 0 0-.8l-2.194-.812a.533.533 0 0 1-.315-.315L19.4 1.279Z",
shapeRendering: "geometricPrecision"
}), /*#__PURE__*/React.createElement("path", {
d: "M13 5c0-.675.111-1.324.317-1.929-.27-.03-.54-.05-.813-.06-2.633-.109-5.231.645-7.313 2.14-2.083 1.496-3.516 3.64-3.998 6.05-.45 2.25-.035 4.562 1.153 6.552L1.05 21.687a1 1 0 0 0 1.16 1.29l4.888-1.052a12 12 0 0 0 7.28.817c2.575-.517 4.878-1.861 6.465-3.81 1.59-1.952 2.351-4.376 2.115-6.82a9.202 9.202 0 0 0-.496-2.211 5.972 5.972 0 0 1-1.816.87c.163.5.27 1.013.321 1.534.184 1.896-.402 3.802-1.674 5.364-1.275 1.565-3.156 2.68-5.308 3.112-2.152.431-4.402.143-6.326-.802a1 1 0 0 0-.651-.08l-3.512.756.897-2.724a1 1 0 0 0-.118-.868c-1.105-1.653-1.496-3.595-1.121-5.47.376-1.878 1.502-3.596 3.204-4.817 1.704-1.224 3.859-1.858 6.064-1.768.194.008.387.022.578.04V5Z",
shapeRendering: "geometricPrecision"
}));
}
ChatAI.displayName = 'ChatAI';
export default createBaseComponent(ChatAI);