Operating system platform definitions and configuration used throughout the application to provide OS-specific UI elements and functionality. ## Key Components **Types:** - `OSPlatformId` - Union type for supported OS identifiers ('windows', 'linux', 'darwin') - `OSPlatformOption` - Interface defining platform structure with id, display name, and icon component **Exports:** - `OS_PLATFORMS` - Array of all available OS platform configurations - `DEFAULT_OS_PLATFORM` - Default platform selection ('windows') ## Usage Example ```typescript import { OS_PLATFORMS, DEFAULT_OS_PLATFORM, type OSPlatformId } from './os-platforms'; // Render platform selector function PlatformSelector() { return (