Renders a compact badge combining a `ToolIcon` and label for a given OpenFrame tool type, designed for use in tables and lists to identify tool sources such as Fleet MDM, MeshCentral, and OpenFrame RMM.
## Key Components
- **`ToolBadge`** — Main functional component that resolves a human-readable label via `getToolLabel` and renders it alongside its corresponding `ToolIcon`
- **`ToolBadgeProps`** — Interface defining accepted props:
- `toolType: ToolType` — Required; identifies which tool to display
- `className?: string` — Optional CSS classes for the wrapper `div`
- `iconClassName?: string` — Optional CSS classes forwarded to `ToolIcon`
- **Re-export** — `ToolType` is re-exported from `../../types/tool.types` for consumer convenience
## Usage Example
```typescript
import { ToolBadge } from './components/ToolBadge'
// Basic usage