aboutsummaryrefslogtreecommitdiff
path: root/icons-react/icons-js/cpu.js
blob: 2c25e5bcd593c5f70c91526a5ad013d25c5d7c33 (plain)
1
2
3
4
5
6
7
8
9
10
11
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;