Skip to content

Commit

Permalink
fix logo rendering (#3542)
Browse files Browse the repository at this point in the history
  • Loading branch information
pablonyx authored Dec 22, 2024
1 parent 09b879e commit 18d7262
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions web/src/components/icons/icons.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -103,12 +103,14 @@ export const LogoIcon = ({
className = defaultTailwindCSS,
src,
}: LogoIconProps) => (
<div
<Image
style={{ width: `${size}px`, height: `${size}px` }}
className={`w-[${size}px] h-[${size}px] ` + className}
>
<Image src={src} alt="Logo" width="96" height="96" />
</div>
src={src}
alt="Logo"
width="96"
height="96"
/>
);

export const AssistantsIconSkeleton = ({
Expand Down

0 comments on commit 18d7262

Please sign in to comment.