Central barrel export file that re-exports all icon categories from the icon library, providing a single entry point for consuming the complete icon set. ## Key Components All exports are organized into the following thematic categories: | Category | Module | |---|---| | Alphabet & Numbers | `alphabet`, `number` | | UI & Interface | `interface`, `loaders`, `sort-and-filter`, `text-editor` | | Media & Communication | `audio-and-visual`, `communication`, `media-playback` | | Branding & Logos | `brand-logos`, `logos` | | Documents & Coding | `documents`, `coding` | | People & Shopping | `users`, `shopping`, `clothes` | | Travel & Vehicles | `map-and-travel`, `vehicles-and-delivery`, `buildings` | | Data & Finance | `charts`, `finance` | | Health & Lifestyle | `health`, `household`, `food-and-drinks`, `sport`, `school` | | Nature & Environment | `weather-and-nature` | | Utility | `arrows`, `design`, `devices`, `date-and-time`, `security`, `signs-and-symbols` | ## Usage Example ```typescript // Import any icon directly from the library root import { IconArrowRight, IconShoppingCart, IconCloudRain, IconUser, } from '@openframe-oss-lib/icons'; // Or import everything (tree-shaking recommended) import * as Icons from '@openframe-oss-lib/icons'; ``` > **Tip:** Bundlers like Vite and webpack support tree-shaking on barrel files, so only the icons you import will be included in your final bundle. ## Source [`index.ts`](https://github.com/flamingo-stack/openframe-oss-lib/blob/main/index.ts)