Renders a set of deprecated SVG icon components for the tool directory UI, providing `SOCIcon`, `NOCIcon`, `ITIcon`, `OPSIcon`, and `ExploreCategoriesIcon`. ## Key Components | Export | Description | |--------|-------------| | `SOCIcon` | Shield with checkmark — Security Operations Center icon | | `NOCIcon` | Monitor/screen — Network Operations Center icon | | `ITIcon` | Server rack — IT department icon | | `OPSIcon` | Folder with bookmark — Operations icon | | `ExploreCategoriesIcon` | Linked shapes — Explore categories icon | All components accept the same `IconProps` interface: | Prop | Type | Default | |------|------|---------| | `className` | `string` | `"w-6 h-6"` | | `fill` | `string` | `"white"` | > ⚠️ **Deprecated** — All exports in this file are marked `@deprecated`. Use icons from `icons-v2-generated` instead. ## Usage Example ```typescript import { SOCIcon, NOCIcon, ITIcon } from './tool-directory-icons'; // Basic usage with defaults // Custom size and color // With Tailwind classes ```