fix(ui): use local tabby icon (#1020)
parent
eac6edee96
commit
d1563d82cd
Binary file not shown.
|
After Width: | Height: | Size: 150 KiB |
|
|
@ -2,6 +2,7 @@
|
||||||
// @see https://github.com/mckaywrigley/chatbot-ui/blob/main/components/Chat/ChatMessage.tsx
|
// @see https://github.com/mckaywrigley/chatbot-ui/blob/main/components/Chat/ChatMessage.tsx
|
||||||
|
|
||||||
import Image from 'next/image'
|
import Image from 'next/image'
|
||||||
|
import tabbyLogo from '@/assets/tabby.png'
|
||||||
import { Message } from 'ai'
|
import { Message } from 'ai'
|
||||||
import remarkGfm from 'remark-gfm'
|
import remarkGfm from 'remark-gfm'
|
||||||
import remarkMath from 'remark-math'
|
import remarkMath from 'remark-math'
|
||||||
|
|
@ -93,7 +94,7 @@ function IconTabby() {
|
||||||
return (
|
return (
|
||||||
<Image
|
<Image
|
||||||
style={{ borderRadius: 4 }}
|
style={{ borderRadius: 4 }}
|
||||||
src="https://avatars.githubusercontent.com/u/125617854?s=128&v=4"
|
src={tabbyLogo}
|
||||||
alt="tabby"
|
alt="tabby"
|
||||||
width="128"
|
width="128"
|
||||||
height="128"
|
height="128"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue