A React SVG icon component that renders an open source symbol featuring angled brackets and a forward slash, commonly used to represent code or open source projects.
## Key Components
- **OpenSourceIcon**: Main functional component that renders an SVG icon
- **OpenSourceIconProps**: TypeScript interface defining component props
- `className?: string` - Optional CSS classes
- `width?: number` - Icon width (default: 19px)
- `height?: number` - Icon height (default: 18px)
The SVG contains two main path elements:
- Forward slash in the center
- Left and right angle brackets (< >)
## Usage Example
```typescript
import { OpenSourceIcon } from './open-source-icon';
// Basic usage with defaults (19x18px)
// Custom size and styling
// In a button or link
```
The icon uses `currentColor` for the fill, making it inherit the text color of its parent element and work well with CSS color utilities and theming systems.