refactor shuffle all modal for styles and loading state

This commit is contained in:
jeffvli
2025-11-26 14:58:10 -08:00
parent 6a8e55ce15
commit ffa9d165f2
8 changed files with 229 additions and 181 deletions
@@ -61,7 +61,7 @@ interface PlayButtonProps extends Omit<ActionIconProps, 'icon' | 'variant'> {
isPaused?: boolean;
}
export const PlayButton = forwardRef<HTMLButtonElement, PlayButtonProps>(
export const MainPlayButton = forwardRef<HTMLButtonElement, PlayButtonProps>(
({ isPaused, onClick, ...props }: PlayButtonProps, ref) => {
const playerStateClass = isPaused
? PlaybackSelectors.playerStatePaused