UNPKG

styled-icons

Version:

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

21 lines (20 loc) 1.05 kB
import { __assign } from "tslib"; import * as React from 'react'; import { StyledIconBase } from '../../StyledIconBase'; export var Shuffle = 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: "16 3 21 3 21 8", key: "k0" }), React.createElement("line", { x1: 4, x2: 21, y1: 20, y2: 3, key: "k1" }), React.createElement("polyline", { points: "21 16 21 21 16 21", key: "k2" }), React.createElement("line", { x1: 15, x2: 21, y1: 15, y2: 21, key: "k3" }), React.createElement("line", { x1: 4, x2: 9, y1: 4, y2: 9, key: "k4" }))); }); Shuffle.displayName = 'Shuffle'; export var ShuffleDimensions = { height: 24, width: 24 };