aboutsummaryrefslogtreecommitdiff
path: root/icons-react/icons-js/bat.js
diff options
context:
space:
mode:
Diffstat (limited to 'icons-react/icons-js/bat.js')
-rw-r--r--icons-react/icons-js/bat.js12
1 files changed, 12 insertions, 0 deletions
diff --git a/icons-react/icons-js/bat.js b/icons-react/icons-js/bat.js
new file mode 100644
index 00000000..2f28b6c6
--- /dev/null
+++ b/icons-react/icons-js/bat.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconBat({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-bat" 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="M17 16c.74 -2.286 2.778 -3.762 5 -3c-.173 -2.595 .13 -5.314 -2 -7.5c-1.708 2.648 -3.358 2.557 -5 2.5v-4l-3 2l-3 -2v4c-1.642 .057 -3.292 .148 -5 -2.5c-2.13 2.186 -1.827 4.905 -2 7.5c2.222 -.762 4.26 .714 5 3c2.593 0 3.889 .952 5 4c1.111 -3.048 2.407 -4 5 -4z" /><path d="M9 8a3 3 0 0 0 6 0" /></svg>;
+}
+
+export default IconBat; \ No newline at end of file