aboutsummaryrefslogtreecommitdiff
path: root/icons-react/icons-js/bottle.js
diff options
context:
space:
mode:
Diffstat (limited to 'icons-react/icons-js/bottle.js')
-rw-r--r--icons-react/icons-js/bottle.js12
1 files changed, 12 insertions, 0 deletions
diff --git a/icons-react/icons-js/bottle.js b/icons-react/icons-js/bottle.js
new file mode 100644
index 00000000..9aed347c
--- /dev/null
+++ b/icons-react/icons-js/bottle.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconBottle({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg className="icon icon-tabler icon-tabler-bottle" 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="M10 5h4v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2z" /><path d="M14 3.5c0 1.626 .507 3.212 1.45 4.537l.05 .07a8.093 8.093 0 0 1 1.5 4.694v6.199a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2v-6.2c0 -1.682 .524 -3.322 1.5 -4.693l.05 -.07a7.823 7.823 0 0 0 1.45 -4.537" /><path d="M7.003 14.803a2.4 2.4 0 0 0 .997 -.803a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 1 -.805" /></svg>;
+}
+
+export default IconBottle; \ No newline at end of file