mirror of
https://github.com/danny-avila/LibreChat.git
synced 2026-04-07 00:15:23 +02:00
feat: Add Vercel endpoint icon with light/dark mode support
Add SVG icon for Vercel AI Gateway endpoint that adapts to system color scheme using CSS prefers-color-scheme media query. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
parent
efbc088642
commit
c5f8a084f7
2 changed files with 8 additions and 0 deletions
7
client/public/assets/vercel.svg
Normal file
7
client/public/assets/vercel.svg
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
<svg viewBox="0 0 1155 1000" xmlns="http://www.w3.org/2000/svg">
|
||||
<style>
|
||||
path { fill: #000; }
|
||||
@media (prefers-color-scheme: dark) { path { fill: #fff; } }
|
||||
</style>
|
||||
<path d="M577.344 0L1154.69 1000H0L577.344 0Z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 234 B |
|
|
@ -24,6 +24,7 @@ const knownEndpointAssets = {
|
|||
[KnownEndpoints.shuttleai]: 'assets/shuttleai.png',
|
||||
[KnownEndpoints['together.ai']]: 'assets/together.png',
|
||||
[KnownEndpoints.unify]: 'assets/unify.webp',
|
||||
[KnownEndpoints.vercel]: 'assets/vercel.svg',
|
||||
};
|
||||
|
||||
const knownEndpointClasses = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue