aboutsummaryrefslogtreecommitdiff
path: root/icons-react/icons-js/volume-off.js
diff options
context:
space:
mode:
Diffstat (limited to 'icons-react/icons-js/volume-off.js')
-rw-r--r--icons-react/icons-js/volume-off.js12
1 files changed, 12 insertions, 0 deletions
diff --git a/icons-react/icons-js/volume-off.js b/icons-react/icons-js/volume-off.js
new file mode 100644
index 00000000..9d79282e
--- /dev/null
+++ b/icons-react/icons-js/volume-off.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconVolumeOff({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-volume-off" 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="M15 8a5 5 0 0 1 1.912 4.934m-1.377 2.602a5.001 5.001 0 0 1 -.535 .464" /><path d="M17.7 5a9 9 0 0 1 2.362 11.086m-1.676 2.299a9.005 9.005 0 0 1 -.686 .615" /><path d="M9.069 5.054l.431 -.554a0.8 .8 0 0 1 1.5 .5v2m0 4v8a0.8 .8 0 0 1 -1.5 .5l-3.5 -4.5h-2a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1h2l1.294 -1.664" /><path d="M3 3l18 18" /></svg>;
+}
+
+export default IconVolumeOff; \ No newline at end of file