@semcore/icon
Version:
Semrush Icon Component
28 lines • 1.4 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 RootPower({
width = '24',
height = '24',
viewBox = '0 0 24 24',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "Power",
"data-group": "l",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
d: "M12 1.004a1 1 0 0 0-1 1v7a1 1 0 1 0 2 0v-7a1 1 0 0 0-1-1Z",
shapeRendering: "geometricPrecision"
}), /*#__PURE__*/React.createElement("path", {
d: "M6.858 4.805a.983.983 0 0 0 .248-1.378 1.007 1.007 0 0 0-1.392-.245C2.866 5.147 1 8.416 1 12.117c0 6.012 4.925 10.887 11 10.887s11-4.875 11-10.887c0-3.7-1.866-6.97-4.714-8.935a1.007 1.007 0 0 0-1.392.245.983.983 0 0 0 .248 1.378C19.476 6.417 21 9.091 21 12.117c0 4.92-4.03 8.907-9 8.907s-9-3.988-9-8.907c0-3.026 1.524-5.7 3.858-7.312Z",
shapeRendering: "geometricPrecision"
}));
}
RootPower.displayName = 'Power';
const Power = createBaseComponent(RootPower);
export { Power as default };