aboutsummaryrefslogtreecommitdiff
path: root/icons-react/icons-js/plane-tilt.js
diff options
context:
space:
mode:
Diffstat (limited to 'icons-react/icons-js/plane-tilt.js')
-rw-r--r--icons-react/icons-js/plane-tilt.js12
1 files changed, 12 insertions, 0 deletions
diff --git a/icons-react/icons-js/plane-tilt.js b/icons-react/icons-js/plane-tilt.js
new file mode 100644
index 00000000..be341a4b
--- /dev/null
+++ b/icons-react/icons-js/plane-tilt.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconPlaneTilt({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-plane-tilt" 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="M14.5 6.5l3 -2.9a2.05 2.05 0 0 1 2.9 2.9l-2.9 3l2.5 7.5l-2.5 2.55l-3.5 -6.55l-3 3v3l-2 2l-1.5 -4.5l-4.5 -1.5l2 -2h3l3 -3l-6.5 -3.5l2.5 -2.5l7.5 2.5z" /></svg>;
+}
+
+export default IconPlaneTilt; \ No newline at end of file