A deprecated SVG icon component rendering a "buildings" graphic, intended to be replaced by icons from the `icons-v2-generated` library.
## Key Components
- **`BuildingsIconProps`** — Interface defining optional props: `className`, `size`, and `color`
- **`BuildingsIcon`** — Named export rendering a 64×64 viewBox SVG with sensible defaults (`size: 24`, `color: 'white'`)
> ⚠️ **Deprecated:** This component is marked `@deprecated`. Use icons from `icons-v2-generated` instead.
## Usage Example
```typescript
import { BuildingsIcon } from './buildings-icon'
// Default usage
// Custom size and color
```