aboutsummaryrefslogtreecommitdiff
path: root/icons-react/icons-js/sleigh.js
diff options
context:
space:
mode:
Diffstat (limited to 'icons-react/icons-js/sleigh.js')
-rw-r--r--icons-react/icons-js/sleigh.js12
1 files changed, 12 insertions, 0 deletions
diff --git a/icons-react/icons-js/sleigh.js b/icons-react/icons-js/sleigh.js
new file mode 100644
index 00000000..e3f97d6b
--- /dev/null
+++ b/icons-react/icons-js/sleigh.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconSleigh({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg className="icon icon-tabler icon-tabler-sleigh" 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="M3 19h15a4 4 0 0 0 4 -4" /><path d="M16 15h-9a4 4 0 0 1 -4 -4v-6l1.243 1.243a6 6 0 0 0 4.242 1.757h3.515v2a2 2 0 0 0 2 2h.5a1.5 1.5 0 0 0 1.5 -1.5a1.5 1.5 0 0 1 3 0v1.5a3 3 0 0 1 -3 3z" /><path d="M15 15v4" /><path d="M7 15v4" /></svg>;
+}
+
+export default IconSleigh; \ No newline at end of file