@semcore/icon
Version:
Semrush Icon Component
24 lines • 1.28 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 = '24',
height = '24',
viewBox = '0 0 24 24',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "QuestionSerp",
"data-group": "l",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
d: "M7.001 7.463C7.001 4.963 8.95 3 12 3c3.051 0 4.999 1.962 4.999 4.463 0 2-1.117 2.978-2.62 4.165l-.18.142C12.79 12.88 11 14.288 11 17a1 1 0 0 0 2 0c0-1.724 1.055-2.566 2.62-3.803 1.497-1.183 3.379-2.697 3.379-5.734C18.999 3.703 15.995 1 12 1 8.005 1 5.001 3.704 5.001 7.463a1 1 0 1 0 2 0ZM12 23a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z",
shapeRendering: "geometricPrecision"
}));
}
QuestionSerp.displayName = 'QuestionSerp';
export default createBaseComponent(QuestionSerp);