mirror of
https://github.com/qier222/YesPlayMusic.git
synced 2025-03-01 12:08:55 +08:00
23 lines
447 B
TypeScript
23 lines
447 B
TypeScript
import Avatar from './Avatar'
|
|
import SearchBox from './SearchBox'
|
|
import SettingsButton from './SettingsButton'
|
|
|
|
const TopbarMobile = () => {
|
|
return (
|
|
<div className='mb-5 mt-7 flex'>
|
|
<div className='flex-grow'>
|
|
<SearchBox />
|
|
</div>
|
|
|
|
<div className='ml-6 flex'>
|
|
<SettingsButton />
|
|
<div className='ml-3'>
|
|
<Avatar />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default TopbarMobile
|