aboutsummaryrefslogtreecommitdiff
path: root/icons-react/icons-js/ampersand.js
diff options
context:
space:
mode:
Diffstat (limited to 'icons-react/icons-js/ampersand.js')
-rw-r--r--icons-react/icons-js/ampersand.js12
1 files changed, 12 insertions, 0 deletions
diff --git a/icons-react/icons-js/ampersand.js b/icons-react/icons-js/ampersand.js
new file mode 100644
index 00000000..3c5a0db0
--- /dev/null
+++ b/icons-react/icons-js/ampersand.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconAmpersand({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-ampersand" 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="M19 20l-10.403 -10.972a2.948 2.948 0 0 1 0 -4.165a2.94 2.94 0 0 1 4.161 0a2.948 2.948 0 0 1 0 4.165l-4.68 4.687a3.685 3.685 0 0 0 0 5.207a3.675 3.675 0 0 0 5.2 0l5.722 -5.922" /></svg>;
+}
+
+export default IconAmpersand; \ No newline at end of file