@semcore/icon
Version:
Semrush Icon Component
27 lines • 1.43 kB
JavaScript
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
import React from 'react';
import { createBaseComponent } from '@semcore/core';
import Icon from '../../lib/esm/index.mjs';
function RootPlug({
width = '24',
height = '24',
viewBox = '0 0 24 24',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "Plug",
"data-group": "l",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
d: "M10.293 1.293a1 1 0 0 1 1.414 0L14.5 4.086l2.793-2.793a1 1 0 1 1 1.414 1.414L15.914 5.5 18.5 8.086l2.793-2.793a1 1 0 1 1 1.414 1.414L19.914 9.5l2.793 2.793a1 1 0 0 1 0 1.414c-.604.605-1.256.159-1.728-.314l-5.59 4.274c-2.223 1.7-5.023 1.113-6.889-.753l-5.793 5.793a1 1 0 0 1-1.414-1.414L7.086 15.5c-1.866-1.866-2.453-4.666-.753-6.89l4.274-5.589c-.473-.472-.919-1.124-.314-1.728Zm1.74 3.155 7.519 7.518-5.378 4.112a3 3 0 0 1-3.943-.261l-2.048-2.048a3 3 0 0 1-.261-3.943l4.112-5.378Z",
clipRule: "evenodd",
shapeRendering: "geometricPrecision"
}));
}
RootPlug.displayName = 'Plug';
const Plug = createBaseComponent(RootPlug);
export { Plug as default };