mirror of
https://github.com/qier222/YesPlayMusic.git
synced 2025-03-01 06:34:08 +08:00
18 lines
421 B
TypeScript
18 lines
421 B
TypeScript
import Icon from '@/web/components/Icon'
|
|
import { cx } from '@emotion/css'
|
|
|
|
const SettingsButton = ({ className }: { className?: string }) => {
|
|
return (
|
|
<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>
|
|
)
|
|
}
|
|
|
|
export default SettingsButton
|