A React SVG icon component that renders a devices/monitor icon with customizable size, color, and styling properties.
## Key Components
- **DevicesIconProps** - TypeScript interface extending SVGProps with optional size and color properties
- **DevicesIcon** - Functional component that renders an SVG icon representing devices/monitors
- **SVG Paths** - Two path elements creating a monitor with stand design
## Usage Example
```typescript
import { DevicesIcon } from './devices-icon'
// Basic usage with default size (20px)
// Custom size and color
// With additional SVG properties
console.log('Device icon clicked')}
aria-label="Devices"
/>
// Custom styling
```
The component accepts all standard SVG props through prop spreading, making it highly flexible for different contexts. The icon uses a 24x24 viewBox and scales proportionally based on the size prop. The default size is 20px with no default fill color, allowing it to inherit from parent styles.