aboutsummaryrefslogtreecommitdiff
path: root/icons-react/icons-js/arrows-shuffle.js
blob: 124dc880b4f9a118867b3ae399ee0d457e0cd251 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import * as React from "react";

function IconArrowsShuffle({
  size = 24,
  color = "currentColor",
  stroke = 2,
  ...props
}) {
  return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-arrows-shuffle" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><desc>{"Download more icon variants from https://tabler-icons.io/i/arrows-shuffle"}</desc><path stroke="none" d="M0 0h24v24H0z" fill="none" /><path d="M18 4l3 3l-3 3" /><path d="M18 20l3 -3l-3 -3" /><path d="M3 7h3a5 5 0 0 1 5 5a5 5 0 0 0 5 5h5" /><path d="M21 7h-5a4.978 4.978 0 0 0 -2.998 .998m-4.002 8.003a4.984 4.984 0 0 1 -3 .999h-3" /></svg>;
}

export default IconArrowsShuffle;