@semcore/icon
Version:
Semrush Icon Component
24 lines • 1.54 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 = '16',
height = '16',
viewBox = '0 0 16 16',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "CursorMove",
"data-group": "m",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
d: "M6.994 9.006H3.41l.29.29a1 1 0 0 1-1.415 1.415L.289 8.713a.998.998 0 0 1-.293-.709c0-.256.097-.513.293-.709l1.996-1.998a1 1 0 1 1 1.414 1.415l-.289.29h3.584V3.418l-.29.289a1 1 0 0 1-1.415-1.414L7.287.297a.998.998 0 0 1 .709-.293c.256 0 .513.097.709.293l1.998 1.996a1 1 0 1 1-1.415 1.414l-.29-.289v3.584h3.584l-.29-.29a1 1 0 0 1 1.415-1.415l1.996 1.998a.997.997 0 0 1 .293.71.997.997 0 0 1-.293.708l-1.996 1.998a1 1 0 1 1-1.414-1.415l.289-.29H8.998v3.584l.29-.29a1 1 0 0 1 1.415 1.415l-1.998 1.996a.997.997 0 0 1-.71.293.997.997 0 0 1-.708-.293l-1.998-1.996a1 1 0 1 1 1.415-1.414l.29.289V9.006Z",
shapeRendering: "geometricPrecision"
}));
}
CursorMove.displayName = 'CursorMove';
export default createBaseComponent(CursorMove);