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

function Icon3dRotate({
  size = 24,
  color = "currentColor",
  stroke = 2,
  ...props
}) {
  return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-3d-rotate" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><path d="M7 15.5l4 -2.5" /><path d="M3 13l4 2.5v4.996l4 -2.496v-5l-4 -2.5z" /><path d="M3 13v5l4 2.5" /><path d="M11 4a7 7 0 0 1 7 7v4l-3 -3" /><path d="M21 12l-3 3" /></svg>;
}

export default Icon3dRotate;