A React SVG component that renders the Windows operating system logo icon with customizable styling properties.
## Key Components
- **WindowsIconProps**: TypeScript interface extending standard SVG element props for type safety
- **WindowsIcon**: Functional component that renders a 16x16 SVG icon of the Windows logo with four quadrants
## Usage Example
```typescript
import { WindowsIcon } from './windows-icon'
// Basic usage with default white color
// Custom styling with different color and CSS class
// With event handlers
console.log('Windows icon clicked')}
onMouseOver={(e) => e.currentTarget.style.opacity = '0.8'}
/>
```
The component accepts all standard SVG props through prop spreading, making it highly flexible for different use cases. The default color is white, but can be customized via the `color` prop. The icon maintains a 16x16 viewBox regardless of the actual rendered size.