@semcore/icon
Version:
Semrush Icon Component
27 lines • 1.88 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 = '16',
height = '16',
viewBox = '0 0 16 16',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "ChatAI",
"data-group": "m",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
d: "M13.374.261a.4.4 0 0 0-.75 0l-.575 1.552a.4.4 0 0 1-.236.237l-1.552.574a.4.4 0 0 0 0 .75l1.552.575a.4.4 0 0 1 .236.236l.575 1.552a.4.4 0 0 0 .75 0l.574-1.552a.4.4 0 0 1 .236-.236l1.552-.575a.4.4 0 0 0 0-.75l-1.552-.574a.4.4 0 0 1-.236-.237L13.374.261Z",
shapeRendering: "geometricPrecision"
}), /*#__PURE__*/React.createElement("path", {
d: "M12.886 10.895c.758-.887 1.135-1.936 1.112-2.987a4.977 4.977 0 0 0 1.93-.848c.016.106.03.212.04.318.177 1.739-.393 3.451-1.562 4.818-1.164 1.362-2.84 2.288-4.696 2.643a9.063 9.063 0 0 1-5.178-.53l-2.825.58a1.301 1.301 0 0 1-1.49-1.7l.68-1.966C.086 9.856-.194 8.277.131 6.732c.359-1.71 1.421-3.21 2.937-4.247C4.582 1.45 6.462.933 8.358 1.007l.05.002a4.99 4.99 0 0 0-.413 1.993c-1.392.001-2.73.407-3.796 1.136-1.136.777-1.866 1.853-2.108 3.006-.241 1.147.007 2.342.73 3.371.183.263.23.599.126.902l-.437 1.264 1.934-.397a1 1 0 0 1 .625.074c1.293.605 2.812.792 4.266.514 1.454-.278 2.71-.994 3.55-1.977Z",
shapeRendering: "geometricPrecision"
}));
}
ChatAI.displayName = 'ChatAI';
export default createBaseComponent(ChatAI);