Mercurial
view hg-web/src/icons/README.md @ 261:b401627fc49e
Add JRPG mock flows and interactive previews
Add scripted mock SSE commands, custom event forwarding, animated chat turns, full-height message navigation, and a cyberpunk resume dossier.
Co-authored-by: Copilot <[email protected]>
| author | MrJuneJune <mrjunejune@users.noreply.github.com> |
|---|---|
| date | Wed, 05 Aug 2026 20:38:32 -0700 |
| parents | b818a4561a3c |
| children |
line wrap: on
line source
# icons Static icon assets for the repository browser UI. ## Files | File | Description | Source | |------|-------------|--------| | `folder.png` | Directory/folder icon | Flaticon | | `file.svg` | Generic file icon | VSCode Material Icon Theme | | `home.png` | Home navigation icon | Flaticon | | `repo.svg` | Repository icon (git branch style) | Custom | | `close.png` | Modal close button icon | Flaticon | ## Usage Icons are served as static files at `/icons/` and referenced in `repo-browser.tsx`: ```typescript const ICONS = { folder: "/icons/folder.png", file: "/icons/file.svg", home: "/icons/home.png", repo: "/icons/repo.svg", close: "/icons/close.png" }; ``` Add to Bazel filegroup for serving.