-
Notifications
You must be signed in to change notification settings - Fork 227
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[OPIK-117] [Open-source] Use new Opik logo for open-source platform (#…
…284)
- Loading branch information
1 parent
9183f94
commit e4ec1a8
Showing
8 changed files
with
78 additions
and
31 deletions.
There are no files selected for viewing
File renamed without changes
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
import React from "react"; | ||
import { cn } from "@/lib/utils"; | ||
import imageLogoUrl from "/images/opik-logo.png"; | ||
|
||
type LogoProps = { | ||
expanded: boolean; | ||
}; | ||
|
||
const Logo: React.FunctionComponent<LogoProps> = ({ expanded }) => { | ||
return ( | ||
<img | ||
className={cn("h-8 object-cover object-left -ml-[3px] mr-[3px]", { | ||
"w-[32px]": !expanded, | ||
})} | ||
src={imageLogoUrl} | ||
alt="opik logo" | ||
/> | ||
); | ||
}; | ||
|
||
export default Logo; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
import React from "react"; | ||
import { cn } from "@/lib/utils"; | ||
import imageLogoUrl from "/images/comet-logo.png"; | ||
|
||
type LogoProps = { | ||
expanded: boolean; | ||
}; | ||
|
||
const Logo: React.FunctionComponent<LogoProps> = ({ expanded }) => { | ||
return ( | ||
<img | ||
className={cn("h-8 object-cover object-left", { | ||
"w-[26px]": !expanded, | ||
})} | ||
src={imageLogoUrl} | ||
alt="comet logo" | ||
/> | ||
); | ||
}; | ||
|
||
export default Logo; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters