aboutsummaryrefslogtreecommitdiff
path: root/icons-react/icons-js/cpu-off.js
diff options
context:
space:
mode:
Diffstat (limited to 'icons-react/icons-js/cpu-off.js')
-rw-r--r--icons-react/icons-js/cpu-off.js12
1 files changed, 12 insertions, 0 deletions
diff --git a/icons-react/icons-js/cpu-off.js b/icons-react/icons-js/cpu-off.js
new file mode 100644
index 00000000..ccb73c49
--- /dev/null
+++ b/icons-react/icons-js/cpu-off.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconCpuOff({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-cpu-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="M9 5h9a1 1 0 0 1 1 1v9m-.292 3.706a0.997 .997 0 0 1 -.708 .294h-12a1 1 0 0 1 -1 -1v-12c0 -.272 .108 -.518 .284 -.698" /><path d="M13 9h2v2m0 4h-6v-6" /><path d="M3 10h2" /><path d="M3 14h2" /><path d="M10 3v2" /><path d="M14 3v2" /><path d="M21 10h-2" /><path d="M21 14h-2" /><path d="M14 21v-2" /><path d="M10 21v-2" /><path d="M3 3l18 18" /></svg>;
+}
+
+export default IconCpuOff; \ No newline at end of file