sebikostudio-icons
Version:
A collection of icon components
24 lines • 1.11 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, { forwardRef } from 'react';
export const MoveIcon = /*#__PURE__*/forwardRef(({
className,
style,
ariaLabel,
...props
}, ref) => /*#__PURE__*/React.createElement("svg", _extends({
ref: ref,
className: className,
"aria-label": ariaLabel || "move, arrows, all directions, direction, directions, up, top, bottom, down, left, right",
style: style,
width: "20",
height: "20",
viewBox: "0 0 20 20",
fill: "none",
xmlns: "http://www.w3.org/2000/svg"
}, props), /*#__PURE__*/React.createElement("path", {
d: "M10 1.5L10 7.5M10 1.5L7.5 4M10 1.5L12.5 4M10 18.5L10 12.5M10 18.5L7.5 16M10 18.5L12.5 16M1.5 10L7.5 10M1.5 10L4 7.5M1.5 10L4 12.5M18.5 10L12.5 10M18.5 10L16 7.5M18.5 10L16 12.5",
stroke: "currentColor",
strokeLinecap: "round",
strokeLinejoin: "round"
})));
export default MoveIcon;