styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
16 lines (15 loc) • 1.7 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var tslib_1 = require("tslib");
var React = tslib_1.__importStar(require("react"));
var StyledIconBase_1 = require("../../StyledIconBase");
exports.ArrowMoveOutline = React.forwardRef(function (props, ref) {
var attrs = {
"fill": "currentColor",
"xmlns": "http://www.w3.org/2000/svg",
};
return (React.createElement(StyledIconBase_1.StyledIconBase, tslib_1.__assign({ iconAttrs: attrs, iconVerticalAlign: "middle", iconViewBox: "0 0 24 24" }, props, { ref: ref }),
React.createElement("path", { d: "M22.828 10.586l-9.414-9.414C13.023.781 12.512.586 12 .586s-1.023.195-1.414.586l-9.414 9.414a2 2 0 000 2.828l9.414 9.414c.391.391.902.586 1.414.586s1.023-.195 1.414-.586l9.414-9.414a2 2 0 000-2.828zM17 16a.999.999 0 01-.707-1.707L17.586 13H13v4.586l1.293-1.293a.997.997 0 011.414 0 .999.999 0 010 1.414L12 21.414l-3.707-3.707a.999.999 0 111.414-1.414L11 17.586V13H6.414l1.293 1.293a.999.999 0 11-1.414 1.414L2.586 12l3.707-3.707a.997.997 0 011.414 0 .999.999 0 010 1.414L6.414 11H11V6.414L9.707 7.707a.997.997 0 01-1.414 0 .999.999 0 010-1.414L12 2.586l3.707 3.707a.999.999 0 11-1.414 1.414L13 6.414V11h4.586l-1.293-1.293a.999.999 0 111.414-1.414L21.414 12l-3.707 3.707A.997.997 0 0117 16zm-1.732-2A1.981 1.981 0 0015 15c-.357 0-.699.093-1 .268V14h1.268zm-6.536 0H10v1.268A1.981 1.981 0 009 15c0-.357-.093-.699-.268-1zm0-4C8.907 9.699 9 9.357 9 9c.357 0 .699-.093 1-.268V10H8.732zm6.536 0H14V8.732c.301.175.643.268 1 .268 0 .357.093.699.268 1z", key: "k0" })));
});
exports.ArrowMoveOutline.displayName = 'ArrowMoveOutline';
exports.ArrowMoveOutlineDimensions = { height: 24, width: 24 };