diff options
Diffstat (limited to 'icons-react/icons-js/cpu.js')
-rw-r--r-- | icons-react/icons-js/cpu.js | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/icons-react/icons-js/cpu.js b/icons-react/icons-js/cpu.js new file mode 100644 index 00000000..2c25e5bc --- /dev/null +++ b/icons-react/icons-js/cpu.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconCpu({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg className="icon icon-tabler icon-tabler-cpu" 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="M9 9h6v6h-6z" /><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 IconCpu;
\ No newline at end of file |