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

function IconPerspectiveOff({
  size = 24,
  color = "currentColor",
  stroke = 2,
  ...props
}) {
  return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-perspective-off" 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="M8.511 4.502l9.63 1.375a1 1 0 0 1 .859 .99v8.133m-.859 3.123l-12 1.714a1 1 0 0 1 -1.141 -.99v-13.694a1 1 0 0 1 .01 -.137" /><path d="M3 3l18 18" /></svg>;
}

export default IconPerspectiveOff;