Base64-encoded PNG data URI for Fae's avatar — the AI helpdesk agent's brand mark, self-contained for zero-asset-serving dependency.
## Key Components
| Export | Type | Description |
|---|---|---|
| `FAE_AVATAR_DATA_URI` | `string` | Base64 PNG data URI (160×160px, ~37 KB) representing Fae's avatar mark |
## Usage Example
```typescript
import { FAE_AVATAR_DATA_URI } from './fae-avatar';
// Use directly in an
tag — no CDN or host assets needed
const avatar = document.createElement('img');
avatar.src = FAE_AVATAR_DATA_URI;
avatar.alt = 'Fae avatar';
document.body.appendChild(avatar);
// Or in React/Vue component props
```
## Notes
- **Self-contained**: The full PNG is inlined as a `data:image/png;base64,...` URI, so no external hosting or asset pipeline is required.
- **Fae-specific**: Fae has no separate vector icon — this avatar IS the brand mark (see `AgentMark` component).
- **Source spec**: 160×160 PNG, approximately 37 KB before base64 encoding.
## Source
[`fae-avatar.ts`](https://github.com/flamingo-stack/openframe-oss-lib/blob/main/fae-avatar.ts)