A React SVG icon component that renders a network topology diagram with interconnected nodes and pathways. ## Key Components - **NetworkIconProps**: Interface extending React SVG props with optional `color` prop - **NetworkIcon**: Functional component rendering a network/connectivity icon as inline SVG ## Usage Example ```typescript import { NetworkIcon } from './network-icon' // Basic usage with defaults (white color, h-6 w-6 size) // Custom styling console.log('Network clicked')} /> // With additional SVG props ``` The icon displays a network diagram with central hub and connected nodes, making it ideal for representing network connectivity, system architecture, or data flow visualizations. The component accepts standard SVG props for full customization while providing sensible defaults.