@semcore/icon
Version:
Semrush Icon Component
33 lines • 1.69 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 Plug({
width = '16',
height = '16',
viewBox = '0 0 16 16',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "Plug",
"data-group": "m",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("g", {
clipPath: "url(#a)"
}, /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
d: "M6.293.293a1 1 0 0 1 1.414 0L9.5 2.086 11.293.293a1 1 0 1 1 1.414 1.414L10.914 3.5 12.5 5.086l1.793-1.793a1 1 0 1 1 1.414 1.414L13.914 6.5l1.793 1.793a1 1 0 0 1 0 1.414c-.6.601-1.25.163-1.722-.308l-2.55 2.143a4.93 4.93 0 0 1-5.897.334l-3.83 3.831a1 1 0 0 1-1.415-1.414l3.838-3.838a4.93 4.93 0 0 1 .319-5.806l2.153-2.632c-.472-.472-.912-1.122-.31-1.724Zm1.731 3.145 4.541 4.541-2.417 2.032a2.928 2.928 0 0 1-4.15-4.096l2.026-2.477Z",
clipRule: "evenodd",
shapeRendering: "geometricPrecision"
})), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
id: "a"
}, /*#__PURE__*/React.createElement("path", {
d: "M0 0h16v16H0z",
shapeRendering: "geometricPrecision"
}))));
}
Plug.displayName = 'Plug';
export default createBaseComponent(Plug);