Barrel export file that aggregates and re-exports all assets from the `assets` module, including static resources and the Fae avatar component. ## Key Components - **`assets`** — An empty, frozen constant object (`as const`) serving as a namespace placeholder for future static assets (fonts, icons, etc.) - **`fae-avatar`** — Re-exports everything from the `./fae-avatar` module ## Usage Example ```typescript import { assets, FaeAvatar } from '@openframe-oss-lib/assets'; // Use re-exported Fae avatar ; // Access the assets namespace (reserved for future use) console.log(assets); // {} ``` ## Notes - The `assets` object is intentionally empty and typed `as const` — it acts as a stable, extensible namespace for future platform utilities and static assets (e.g., fonts, images). - All public exports from `./fae-avatar` are surfaced directly from this index, making it the single entry point for asset-related imports. **Source:** [`assets/index.ts`](https://github.com/flamingo-stack/openframe-oss-lib/blob/main/assets/index.ts)