Barrel export file (marked `"use client"`) that re-exports all icon components from the deprecated `icons` module of `@flamingo-stack/openframe-frontend-core`. > **⚠️ Deprecated:** This module is deprecated. Migrate to `icons-v2` for 1600+ icons, improved TypeScript support, and smaller bundle size. ## Key Components Organized export groups: | Category | Examples | |---|---| | **Logo icons** | `FlamingoLogo`, `OpenFrameLogo`, `OpenmspLogo`, `ElestioLogo` | | **Navigation & feature** | `SearchIcon`, `FilterIcon`, `MenuIcon`, `MingoIcon`, `ShellIcon` | | **UI state** | `CheckCircleIcon`, `ErrorIcon`, `CopyIcon`, `SendIcon`, `ThumbsUpIcon` | | **Brand & social** | `GitHubIcon`, `SlackIcon`, `GoogleLogo`, `MicrosoftIcon`, `LinkedInIcon` | | **Social platforms** | `YouTubeIcon`, `InstagramIcon`, `TelegramIcon`, `GlobeIcon` | | **Tab navigation** | `BotIcon`, `ShieldIcon`, `NetworkIcon`, `CpuIcon`, `UsersIcon` | | **Operating systems** | `WindowsIcon`, `MacOSIcon`, `LinuxIcon` | | **Shell types** | `PowerShellIcon`, `BashIcon`, `PythonIcon`, `DenoIcon`, `NushellIcon` | | **Trust page** | `ShieldLockIcon`, `FolderShieldIcon`, `EyeIcon`, `ShieldCheckIcon` | | **AI & OpenFrame** | `AiRobotIcon`, `SparklesIcon`, `NaturalLanguageIcon`, `SmartEscalationIcon` | | **Review platforms** | `G2Icon`, `CapterraIcon`, `TrustpilotIcon` | | **GitHub stats** | `CustomStarIcon`, `CustomForkIcon`, `CustomLicenseIcon` | | **Wildcard exports** | `tool-directory-icons`, `device-type-icons`, `icon-utils` | Notable alias: `XIcon` is exported as `IconsXIcon` to avoid naming conflicts with `ui/custom-icons`. ## Usage Example ```typescript // ❌ Deprecated — avoid new usage import { CopyIcon, GitHubIcon } from '@flamingo-stack/openframe-frontend-core/components/icons'; // ✅ Recommended — migrate to icons-v2 import { CopyIcon, GitHubIcon } from '@flamingo-stack/openframe-frontend-core/components/icons-v2'; ``` **Source:** [`components/icons/index.ts`](https://github.com/flamingo-stack/openframe-oss-lib/blob/main/components/icons/index.ts)