mirror of
https://github.com/danswer-ai/danswer.git
synced 2025-06-23 14:30:57 +02:00
fix logo rendering (#3542)
This commit is contained in:
parent
09b879ee73
commit
18d7262608
@ -103,12 +103,14 @@ export const LogoIcon = ({
|
|||||||
className = defaultTailwindCSS,
|
className = defaultTailwindCSS,
|
||||||
src,
|
src,
|
||||||
}: LogoIconProps) => (
|
}: LogoIconProps) => (
|
||||||
<div
|
<Image
|
||||||
style={{ width: `${size}px`, height: `${size}px` }}
|
style={{ width: `${size}px`, height: `${size}px` }}
|
||||||
className={`w-[${size}px] h-[${size}px] ` + className}
|
className={`w-[${size}px] h-[${size}px] ` + className}
|
||||||
>
|
src={src}
|
||||||
<Image src={src} alt="Logo" width="96" height="96" />
|
alt="Logo"
|
||||||
</div>
|
width="96"
|
||||||
|
height="96"
|
||||||
|
/>
|
||||||
);
|
);
|
||||||
|
|
||||||
export const AssistantsIconSkeleton = ({
|
export const AssistantsIconSkeleton = ({
|
||||||
|
Loading…
x
Reference in New Issue
Block a user