Allow jumping to lyrics (#656)

This commit is contained in:
Gelaechter 2024-07-03 08:24:31 +00:00 committed by GitHub
parent 0768ce80a7
commit ea865f44b1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 8 additions and 1 deletions

View file

@ -26,6 +26,10 @@ const StyledText = styled(TextTitle)<TitleProps & { $alignment: string; $fontSiz
&.unsynchronized {
opacity: 1;
}
&.synchronized {
cursor: pointer;
}
`;
export const LyricLine = ({ text, alignment, fontSize, ...props }: LyricLineProps) => {