A deprecated React SVG icon component that renders a 2×2 grid view layout icon.
## Key Components
### `GridViewIcon`
**⚠️ Deprecated** — Use icons from `icons-v2-generated` instead.
A functional React component rendering a grid/dashboard view SVG icon with four rounded squares arranged in a 2×2 pattern.
**Props:**
| Prop | Type | Default | Description |
|------|------|---------|-------------|
| `className` | `string` | `"w-5 h-5"` | CSS class for sizing/styling |
| `size` | `number` | `22` | Width and height in pixels |
| `color` | `string` | `"white"` | SVG fill color |
## Usage Example
```typescript
import { GridViewIcon } from './grid-view-icon'
// Default usage
// Custom size and color
// Dark theme variant
```
## Migration Note
This component is deprecated. Replace usages with the equivalent icon from the `icons-v2-generated` package:
```typescript
// ❌ Deprecated
import { GridViewIcon } from './grid-view-icon'
// ✅ Preferred
import { GridViewIcon } from '@/icons-v2-generated'
```