UNPKG

styled-icons

Version:

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

22 lines (21 loc) 1.12 kB
import { __assign } from "tslib"; import * as React from 'react'; import { StyledIconBase } from '../../StyledIconBase'; export var Move = React.forwardRef(function (props, ref) { var attrs = { "fill": "none", "xmlns": "http://www.w3.org/2000/svg", "stroke": "currentColor", "strokeLinecap": "round", "strokeLinejoin": "round", }; return (React.createElement(StyledIconBase, __assign({ iconAttrs: attrs, iconVerticalAlign: "middle", iconViewBox: "0 0 24 24" }, props, { ref: ref }), React.createElement("polyline", { points: "5 9 2 12 5 15", key: "k0" }), React.createElement("polyline", { points: "9 5 12 2 15 5", key: "k1" }), React.createElement("polyline", { points: "15 19 12 22 9 19", key: "k2" }), React.createElement("polyline", { points: "19 9 22 12 19 15", key: "k3" }), React.createElement("line", { x1: 2, x2: 22, y1: 12, y2: 12, key: "k4" }), React.createElement("line", { x1: 12, x2: 12, y1: 2, y2: 22, key: "k5" }))); }); Move.displayName = 'Move'; export var MoveDimensions = { height: 24, width: 24 };