mirror of
https://github.com/documenso/documenso.git
synced 2025-11-13 08:13:56 +10:00
55 lines
1.7 KiB
TypeScript
55 lines
1.7 KiB
TypeScript
import { motion } from 'framer-motion';
|
|
import { Monitor, MoonStar, Sun } from 'lucide-react';
|
|
import { useTheme } from 'next-themes';
|
|
|
|
import { useIsMounted } from '@documenso/lib/client-only/hooks/use-is-mounted';
|
|
|
|
export const ThemeSwitcher = () => {
|
|
const { theme, setTheme } = useTheme();
|
|
const isMounted = useIsMounted();
|
|
|
|
return (
|
|
<div className="bg-muted flex items-center gap-x-1 rounded-full p-1">
|
|
<button
|
|
className="text-muted-foreground relative z-10 flex h-8 w-8 items-center justify-center rounded-full"
|
|
onClick={() => setTheme('light')}
|
|
>
|
|
{isMounted && theme === 'light' && (
|
|
<motion.div
|
|
className="bg-background absolute inset-0 rounded-full mix-blend-exclusion"
|
|
layoutId="selected-theme"
|
|
/>
|
|
)}
|
|
<Sun className="h-5 w-5" />
|
|
</button>
|
|
|
|
<button
|
|
className="text-muted-foreground relative z-10 flex h-8 w-8 items-center justify-center rounded-full"
|
|
onClick={() => setTheme('dark')}
|
|
>
|
|
{isMounted && theme === 'dark' && (
|
|
<motion.div
|
|
className="bg-background absolute inset-0 rounded-full mix-blend-exclusion"
|
|
layoutId="selected-theme"
|
|
/>
|
|
)}
|
|
|
|
<MoonStar className="h-5 w-5" />
|
|
</button>
|
|
|
|
<button
|
|
className="text-muted-foreground relative z-10 flex h-8 w-8 items-center justify-center rounded-full"
|
|
onClick={() => setTheme('system')}
|
|
>
|
|
{isMounted && theme === 'system' && (
|
|
<motion.div
|
|
className="bg-background absolute inset-0 rounded-full mix-blend-exclusion"
|
|
layoutId="selected-theme"
|
|
/>
|
|
)}
|
|
<Monitor className="h-5 w-5" />
|
|
</button>
|
|
</div>
|
|
);
|
|
};
|