@semcore/icon
Version:
Semrush Icon Component
24 lines • 1.36 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 CursorMove({
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"
}));
}
CursorMove.displayName = 'CursorMove';
export default createBaseComponent(CursorMove);