feat: updates

This commit is contained in:
qier222 2022-06-11 00:19:07 +08:00
parent 4c90db789b
commit 196a974a64
No known key found for this signature in database
GPG key ID: 9C85007ED905F14D
21 changed files with 291 additions and 191 deletions

View file

@ -1,8 +1,14 @@
import Icon from '@/web/components/Icon'
import { cx } from '@emotion/css'
const SettingsButton = () => {
const SettingsButton = ({ className }: { className?: string }) => {
return (
<button className='app-region-no-drag rounded-full bg-day-600 p-2.5 dark:bg-night-600'>
<button
className={cx(
'app-region-no-drag rounded-full bg-day-600 p-2.5 dark:bg-night-600',
className
)}
>
<Icon name='placeholder' className='h-7 w-7 text-neutral-500' />
</button>
)