UNPKG

styled-icons

Version:

Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components

14 lines (13 loc) 1.07 kB
import { __assign } from "tslib"; import * as React from 'react'; import { StyledIconBase } from '../../StyledIconBase'; export var ArrowMove = React.forwardRef(function (props, ref) { var attrs = { "fill": "currentColor", "xmlns": "http://www.w3.org/2000/svg", }; return (React.createElement(StyledIconBase, __assign({ iconAttrs: attrs, iconVerticalAlign: "middle", iconViewBox: "0 0 24 24" }, props, { ref: ref }), React.createElement("path", { d: "M17.707 8.293a.999.999 0 10-1.414 1.414L17.586 11H13V6.414l1.293 1.293a.997.997 0 001.414 0 .999.999 0 000-1.414L12 2.586 8.293 6.293a.999.999 0 101.414 1.414L11 6.414V11H6.414l1.293-1.293a.999.999 0 10-1.414-1.414L2.586 12l3.707 3.707a.997.997 0 001.414 0 .999.999 0 000-1.414L6.414 13H11v4.586l-1.293-1.293a.999.999 0 10-1.414 1.414L12 21.414l3.707-3.707a.999.999 0 10-1.414-1.414L13 17.586V13h4.586l-1.293 1.293a.999.999 0 101.414 1.414L21.414 12l-3.707-3.707z", key: "k0" }))); }); ArrowMove.displayName = 'ArrowMove'; export var ArrowMoveDimensions = { height: 24, width: 24 };