A React component that renders an SVG icon representing a CPU or processor chip, featuring a central square with connection pins extending from all sides.
## Key Components
- **`CpuIconProps`** - TypeScript interface extending React's SVG props for type safety
- **`CpuIcon`** - Main functional component that renders the CPU icon SVG
## Usage Example
```typescript
import { CpuIcon } from './cpu-icon'
// Basic usage with defaults (white color, h-6 w-6 size)
// Custom styling and color
console.log('CPU clicked')}
/>
// With additional SVG props
```
The component accepts standard SVG props and provides sensible defaults: 24x24 viewBox, white stroke color, and Tailwind CSS classes for 6x6 sizing. The icon design includes a main processor body with connection pins on all four sides, making it perfect for hardware monitoring interfaces or system dashboards.