@semcore/icon
Version:
Semrush Icon Component
24 lines • 1.31 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 QuestionSerp({
width = '16',
height = '16',
viewBox = '0 0 16 16',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "QuestionSerp",
"data-group": "m",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
d: "M4.997 5.386C4.997 4.022 5.97 3 7.5 3c1.529 0 2.504 1.022 2.504 2.386 0 .58-.154.941-.358 1.222-.229.315-.55.573-.997.907l-.115.086c-.831.618-2.04 1.516-2.04 3.399a1 1 0 1 0 1.996 0c0-.85.429-1.19 1.354-1.883.43-.322.988-.741 1.417-1.333.454-.626.739-1.4.739-2.398C12 2.871 10.084 1 7.5 1S3 2.87 3 5.386a1 1 0 1 0 1.997 0ZM7.5 15a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z",
shapeRendering: "geometricPrecision"
}));
}
QuestionSerp.displayName = 'QuestionSerp';
export default createBaseComponent(QuestionSerp);