aboutsummaryrefslogtreecommitdiff
path: root/icons-react/icons-js/dog-bowl.js
diff options
context:
space:
mode:
Diffstat (limited to 'icons-react/icons-js/dog-bowl.js')
-rw-r--r--icons-react/icons-js/dog-bowl.js12
1 files changed, 12 insertions, 0 deletions
diff --git a/icons-react/icons-js/dog-bowl.js b/icons-react/icons-js/dog-bowl.js
new file mode 100644
index 00000000..aab95c2f
--- /dev/null
+++ b/icons-react/icons-js/dog-bowl.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconDogBowl({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg className="icon icon-tabler icon-tabler-dog-bowl" 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 15l5.586 -5.585a2 2 0 1 1 3.414 -1.415a2 2 0 1 1 -1.413 3.414l-3.587 3.586" /><path d="M12 13l-3.586 -3.585a2 2 0 1 0 -3.414 -1.415a2 2 0 1 0 1.413 3.414l3.587 3.586" /><path d="M3 20h18c-.175 -1.671 -.046 -3.345 -2 -5h-14c-1.333 1 -2 2.667 -2 5z" /></svg>;
+}
+
+export default IconDogBowl; \ No newline at end of file