@scaleflex/icons
Version:
SVG icons as React components
25 lines • 1.05 kB
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
var _excluded = ["color", "size", "ref"];
import React from 'react';
export var Cursor = function Cursor(_ref) {
var _ref$color = _ref.color,
color = _ref$color === void 0 ? 'currentColor' : _ref$color,
_ref$size = _ref.size,
size = _ref$size === void 0 ? 14 : _ref$size,
ref = _ref.ref,
rest = _objectWithoutProperties(_ref, _excluded);
return /*#__PURE__*/React.createElement("svg", _extends({
"data-icon-name": "Cursor",
ref: ref,
width: size,
height: size,
viewBox: "0 0 50 50",
fill: "none",
xmlns: "http://www.w3.org/2000/svg"
}, rest), /*#__PURE__*/React.createElement("path", {
d: "M25.332 0.00012207C26.6199 0.00012207 27.664 1.04419 27.664 2.3321V47.6681C27.664 48.9561 26.6199 50.0001 25.332 50.0001C24.0441 50.0001 23 48.9561 23 47.6681V2.3321C23 1.04419 24.0441 0.00012207 25.332 0.00012207Z",
fill: color
}));
};
export default Cursor;