@semcore/icon
Version:
Semrush Icon Component
29 lines • 1.58 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 QuestionsAnswers({
width = '16',
height = '17',
viewBox = '0 0 16 17',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "QuestionsAnswers",
"data-group": "m",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
d: "M8.003 4.221c-.34 0-.6.274-.6.6a.6.6 0 0 1-1.2 0c0-.963.77-1.8 1.8-1.8 1.028 0 1.8.837 1.8 1.8 0 .643-.28 1.134-.585 1.493-.228.268-.509.5-.697.656l-.125.104a.6.6 0 0 1-.786-.906c.067-.06.134-.114.198-.167.178-.148.343-.285.496-.465.19-.223.299-.448.299-.715 0-.326-.26-.6-.6-.6ZM8.003 9.021a.6.6 0 1 0 0-1.2.6.6 0 0 0 0 1.2Z",
shapeRendering: "geometricPrecision"
}), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
d: "M2 3.021a3 3 0 0 1 3-3h8a1 1 0 0 1 1 1v13a1 1 0 0 1-1 1H5a3 3 0 0 1-3-3v-9Zm3-1h7v8H4v-7a1 1 0 0 1 1-1Zm-1 10h8v1H5a1 1 0 0 1-1-1Z",
clipRule: "evenodd",
shapeRendering: "geometricPrecision"
}));
}
QuestionsAnswers.displayName = 'QuestionsAnswers';
export default createBaseComponent(QuestionsAnswers);