mirror of
https://github.com/jeffvli/feishin.git
synced 2026-07-03 17:20:00 +02:00
add favorite songs section to artist page (#1604)
This commit is contained in:
@@ -41,6 +41,7 @@ interface HeaderPlayButtonProps {
|
||||
|
||||
interface TitleProps {
|
||||
children: ReactNode;
|
||||
order?: number;
|
||||
}
|
||||
|
||||
const HeaderPlayButton = ({
|
||||
@@ -100,9 +101,9 @@ const HeaderPlayButton = ({
|
||||
);
|
||||
};
|
||||
|
||||
const Title = ({ children }: TitleProps) => {
|
||||
const Title = ({ children, order = 1 }: TitleProps) => {
|
||||
return (
|
||||
<TextTitle fw={700} order={1} overflow="hidden">
|
||||
<TextTitle fw={700} order={order as any} overflow="hidden">
|
||||
{children}
|
||||
</TextTitle>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user