2022-12-19 15:59:14 -08:00
|
|
|
import { Group } from '@mantine/core';
|
2022-12-24 21:07:20 -08:00
|
|
|
import { PageHeader, TextTitle } from '/@/renderer/components';
|
2022-12-19 15:59:14 -08:00
|
|
|
|
|
|
|
|
export const NowPlayingHeader = () => {
|
2023-01-01 14:04:16 -08:00
|
|
|
// const currentSong = useCurrentSong();
|
|
|
|
|
// const theme = useTheme();
|
2022-12-19 15:59:14 -08:00
|
|
|
|
|
|
|
|
return (
|
2023-01-01 14:04:16 -08:00
|
|
|
<PageHeader>
|
|
|
|
|
<Group p="1rem">
|
2022-12-24 21:07:20 -08:00
|
|
|
<TextTitle
|
|
|
|
|
order={3}
|
2023-01-28 20:46:07 -08:00
|
|
|
weight={700}
|
2022-12-24 21:07:20 -08:00
|
|
|
>
|
|
|
|
|
Queue
|
|
|
|
|
</TextTitle>
|
2022-12-19 15:59:14 -08:00
|
|
|
</Group>
|
|
|
|
|
</PageHeader>
|
|
|
|
|
);
|
|
|
|
|
};
|