@semcore/icon
Version:
Semrush Icon Component
29 lines • 1.59 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 = '24',
height = '25',
viewBox = '0 0 24 25',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "QuestionsAnswers",
"data-group": "l",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
d: "M12 7.021c-.567 0-1 .456-1 1a1 1 0 1 1-2 0c0-1.605 1.285-3 3-3s3 1.395 3 3c0 1.071-.466 1.89-.975 2.488-.38.447-.847.833-1.162 1.093-.08.067-.152.126-.208.175a1 1 0 1 1-1.31-1.512c.113-.098.223-.19.33-.278.297-.247.572-.475.827-.774.316-.371.498-.747.498-1.192 0-.544-.433-1-1-1ZM12 15.021a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z",
shapeRendering: "geometricPrecision"
}), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
d: "M3 4.021a3 3 0 0 1 3-3h14a1 1 0 0 1 1 1v19a1 1 0 0 1-1 1H6a3 3 0 0 1-3-3v-15Zm3-1h13v13H5v-12a1 1 0 0 1 1-1Zm-1 16V18l14 .021v2H6a1 1 0 0 1-1-1Z",
clipRule: "evenodd",
shapeRendering: "geometricPrecision"
}));
}
QuestionsAnswers.displayName = 'QuestionsAnswers';
export default createBaseComponent(QuestionsAnswers);