Skip to content

Commit

Permalink
Fix classic color in logo (#155)
Browse files Browse the repository at this point in the history
  • Loading branch information
vineethasok authored Sep 27, 2023
1 parent a6fed2d commit 7b2e58f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Logos/Logo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export interface LogoProps extends SVGAttributes<SVGElement> {

const Logo = ({ name, theme, size, ...props }: LogoProps) => {
const { name: themeName } = useTheme();
const Component = ["light", "clasic"].includes(theme ?? themeName)
const Component = ["light", "classic"].includes(theme ?? themeName)
? LogosLight[name]
: LogosDark[name];

Expand Down

1 comment on commit 7b2e58f

@vercel
Copy link

@vercel vercel bot commented on 7b2e58f Sep 27, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

click-ui – ./

click-ui-clickhouse.vercel.app
click-ui-git-main-clickhouse.vercel.app
click-ui.vercel.app

Please sign in to comment.