@semcore/icon
Version:
Semrush Icon Component
25 lines • 1.36 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 RootCursorMove({
width = '24',
height = '24',
viewBox = '0 0 24 24',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "CursorMove",
"data-group": "l",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
d: "m12.002 1-.001.001L12 1 8.707 4.293a1 1 0 1 0 1.414 1.414L11 4.828V11H4.83l.877-.878a1 1 0 1 0-1.414-1.414L1 12.001l.001.001-.001.001 3.293 3.293a1 1 0 0 0 1.414-1.414L4.825 13H11v6.172l-.879-.88a1 1 0 1 0-1.414 1.415L12 23h.002l3.293-3.293a1 1 0 0 0-1.414-1.414l-.881.88V13h6.175l-.882.882a1 1 0 0 0 1.414 1.414L23 12.003V12l-3.293-3.293a1 1 0 1 0-1.414 1.414l.878.878H13V4.826l.88.881a1 1 0 0 0 1.415-1.414L12.002 1Z",
shapeRendering: "geometricPrecision"
}));
}
RootCursorMove.displayName = 'CursorMove';
const CursorMove = createBaseComponent(RootCursorMove);
export { CursorMove as default };