@semcore/icon
Version:
Semrush Icon Component
29 lines • 1.4 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 Serp({
width = '16',
height = '16',
viewBox = '0 0 16 16',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "Serp",
"data-group": "m",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
d: "M0 2a1 1 0 0 1 1-1h13a1 1 0 0 1 1 1v4.337A5.526 5.526 0 0 0 13 4.6V4H2v8h3.6a5.526 5.526 0 0 0 1.737 2H1a1 1 0 0 1-1-1V2Z",
shapeRendering: "geometricPrecision"
}), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "M8.022 11.972a3.501 3.501 0 0 0 4.14.605l1.127 1.126a1 1 0 0 0 1.414-1.414l-1.126-1.127a3.502 3.502 0 0 0-5.555-4.14 3.5 3.5 0 0 0 0 4.95Zm1.415-1.414a1.5 1.5 0 0 0 2.116.005l.005-.005.005-.005a1.5 1.5 0 1 0-2.126.005Z",
shapeRendering: "geometricPrecision"
}));
}
Serp.displayName = 'Serp';
export default createBaseComponent(Serp);