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 // With custom styling // In a table cell ``` ## Notes - Icon renders at a fixed size of `16px`; only the wrapper and icon accept className overrides - Label text uses `text-ods-text-primary` / `text-h4` design token classes — ensure your project includes the ODS theme - `displayName` is set to `'ToolBadge'` for accurate React DevTools identification