Skip to content

Commit

Permalink
Fix classic color in logo
Browse files Browse the repository at this point in the history
  • Loading branch information
vineethasok committed Sep 27, 2023
1 parent 5631186 commit d03a170
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

0 comments on commit d03a170

Please sign in to comment.