* Add letter spacing to cell text * Set window control height in px * Add temp unused routes * Migrate text title font weights * Bump mantine to v6 alpha * Migrate modals / notifications * Increase header bar to 65px * Adjust play button props * Migrate various components * Migrate various pages and root styles * Adjust default badge padding * Fix sidebar spacing * Fix list header badges * Adjust default theme
20 lines
420 B
TypeScript
20 lines
420 B
TypeScript
import { Group } from '@mantine/core';
|
|
import { PageHeader, TextTitle } from '/@/renderer/components';
|
|
|
|
export const NowPlayingHeader = () => {
|
|
// const currentSong = useCurrentSong();
|
|
// const theme = useTheme();
|
|
|
|
return (
|
|
<PageHeader>
|
|
<Group p="1rem">
|
|
<TextTitle
|
|
order={3}
|
|
weight={700}
|
|
>
|
|
Queue
|
|
</TextTitle>
|
|
</Group>
|
|
</PageHeader>
|
|
);
|
|
};
|