diff options
Diffstat (limited to 'icons-react/icons-js/cpu-2.js')
-rw-r--r-- | icons-react/icons-js/cpu-2.js | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/icons-react/icons-js/cpu-2.js b/icons-react/icons-js/cpu-2.js new file mode 100644 index 00000000..734e60e9 --- /dev/null +++ b/icons-react/icons-js/cpu-2.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconCpu2({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-cpu-2" 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" /><rect x={5} y={5} width={14} height={14} rx={1} /><path d="M8 10v-2h2m6 6v2h-2m-4 0h-2v-2m8 -4v-2h-2" /><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" /></svg>; +} + +export default IconCpu2;
\ No newline at end of file |