fix: appearance fix
Some checks failed
linter / quality (push) Has been cancelled
tests / ci (push) Has been cancelled

This commit is contained in:
2025-10-27 21:30:03 +05:45
parent 6780f18848
commit ce66173edb
3 changed files with 7 additions and 7 deletions

View File

@@ -1,6 +1,6 @@
import { Appearance, useAppearance } from '@/hooks/use-appearance';
import { cn } from '@/lib/utils';
import { LucideIcon, Monitor, Moon, Sun } from 'lucide-react';
import { LucideIcon, Sun } from 'lucide-react';
import { HTMLAttributes } from 'react';
export default function AppearanceToggleTab({
@@ -11,8 +11,8 @@ export default function AppearanceToggleTab({
const tabs: { value: Appearance; icon: LucideIcon; label: string }[] = [
{ value: 'light', icon: Sun, label: 'Light' },
{ value: 'dark', icon: Moon, label: 'Dark' },
{ value: 'system', icon: Monitor, label: 'System' },
// { value: 'dark', icon: Moon, label: 'Dark' },
// { value: 'system', icon: Monitor, label: 'System' },
];
return (