YesPlayMusic/packages/web/pages/New/Artist/Header/Actions.tsx
2022-06-25 13:47:07 +08:00

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