@semcore/icon
Version:
Semrush Icon Component
29 lines • 1.67 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 ChatQuestion({
width = '16',
height = '16',
viewBox = '0 0 16 16',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "ChatQuestion",
"data-group": "m",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
d: "M7.403 4.819c0-.326.26-.6.6-.6.34 0 .6.274.6.6 0 .267-.11.492-.3.715-.152.18-.317.317-.495.465-.064.053-.13.108-.198.167a.6.6 0 0 0 .786.906l.125-.104c.188-.156.469-.388.697-.656.305-.359.585-.85.585-1.493 0-.963-.771-1.8-1.8-1.8-1.03 0-1.8.837-1.8 1.8a.6.6 0 0 0 1.2 0ZM8.603 8.419a.6.6 0 1 1-1.2 0 .6.6 0 0 1 1.2 0Z",
shapeRendering: "geometricPrecision"
}), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
d: "M14.047.019H2.004A1.005 1.005 0 0 0 1 1.02v13.014a1 1 0 0 0 .552.891 1.006 1.006 0 0 0 1.004-.09l3.803-2.803h7.637A1.005 1.005 0 0 0 15 11.03V1.02a1 1 0 0 0-.953-1.002Zm-1.004 10.01H6.078c-.217 0-.428.07-.602.2l-2.469 1.823V2.042h10.036v7.988Z",
clipRule: "evenodd",
shapeRendering: "geometricPrecision"
}));
}
ChatQuestion.displayName = 'ChatQuestion';
export default createBaseComponent(ChatQuestion);