@semcore/icon
Version:
Semrush Icon Component
29 lines • 1.65 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 = '24',
height = '24',
viewBox = '0 0 24 24',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "ChatQuestion",
"data-group": "l",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
d: "M11 8c0-.544.433-1 1-1s1 .456 1 1c0 .445-.182.82-.498 1.192-.255.299-.53.527-.827.774-.107.089-.217.18-.33.278a1 1 0 1 0 1.31 1.512c.056-.05.127-.108.208-.175.315-.26.782-.646 1.162-1.093C14.534 9.89 15 9.07 15 8c0-1.605-1.285-3-3-3S9 6.395 9 8a1 1 0 0 0 2 0ZM13 14a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z",
shapeRendering: "geometricPrecision"
}), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
d: "M3.003 2.019h18.045a1.003 1.003 0 0 1 .952 1v14.012a1 1 0 0 1-1.003 1.001H8.707l-5.153 3.803a1.003 1.003 0 0 1-1.003.09 1.001 1.001 0 0 1-.551-.89V3.02a1 1 0 0 1 1.003-1.001ZM8.426 16.03h11.62V4.04H4.004v15.013l3.83-2.822c.17-.128.378-.198.591-.2Z",
clipRule: "evenodd",
shapeRendering: "geometricPrecision"
}));
}
ChatQuestion.displayName = 'ChatQuestion';
export default createBaseComponent(ChatQuestion);