Skip to content

Commit 498322e

Browse files
authored
Merge pull request #629 from maiieul/styled-kit
chore: remove useless code
2 parents 325cd3d + 658e824 commit 498322e

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

apps/website/src/components/header/header.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ export default component$(({ showVersion = false }: HeaderProps) => {
137137
>
138138
<header class="xs:gap-8 flex w-full max-w-screen-2xl items-center gap-6">
139139
<section class="mr-auto flex flex-col gap-1 md:flex-row md:gap-8">
140-
<a href="/" aria-label="Qwik UI Logo" class="text-outlined lg:ml-8">
140+
<a href="/" aria-label="Qwik UI Logo" class="lg:ml-8">
141141
<LogoWithBorders />
142142
</a>
143143
{showVersion && (

apps/website/src/components/icons/logo.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ import { cn } from '@qwik-ui/utils';
33
import { useTheme } from 'qwik-themes';
44

55
export const Logo = component$<PropsOf<'svg'>>(({ ...props }) => {
6-
const { theme } = useTheme();
76
return (
87
<svg
98
{...props}

0 commit comments

Comments
 (0)