mirror of
https://github.com/GiriNeko/YesPlayMusic.git
synced 2025-12-16 13:17:46 +00:00
13 lines
461 B
TypeScript
13 lines
461 B
TypeScript
const Actions = () => {
|
|
return (
|
|
<div className='mt-11 flex items-end justify-between lg:z-10 lg:mt-6'>
|
|
<div className='flex items-end'>
|
|
<button className='mr-2.5 h-14 w-14 rounded-full dark:bg-white/10'></button>
|
|
<button className='h-14 w-14 rounded-full dark:bg-white/10'></button>
|
|
</div>
|
|
<button className='h-14 w-[125px] rounded-full dark:bg-brand-700 lg:w-[170px]'></button>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default Actions
|