Files
NotionNext/components/ThemeSwitch.js
tangly1024 0edc6405af matery
2022-12-25 16:18:36 +08:00

24 lines
852 B
JavaScript

import { useGlobal } from '@/lib/global'
import React from 'react'
import { Draggable } from './Draggable'
/**
*
* @returns 主题切换
*/
export function ThemeSwitch() {
const { theme, switchTheme } = useGlobal()
return (<>
<Draggable>
<div id="draggableBox" style={{ left: '10px', top: '90vh' }} className="fixed text-white bg-black z-50 rounded-lg shadow-card">
<div className="p-2 flex items-center">
<i className="fas fa-palette mr-1 cursor-move" />
<div className='uppercase font-sans whitespace-nowrap cursor-pointer ' onClick={switchTheme}> {theme}</div>
<i className='fas fa-arrows cursor-move pl-2' title='click to change theme' alt='click to change theme' />
</div>
</div>
</Draggable>
</>
)
}