increase size of play button icon

This commit is contained in:
jeffvli 2025-06-24 22:22:15 -07:00
parent 35e70a3eff
commit d8f7b49ab6

View file

@ -63,6 +63,9 @@ export const PlayButton = ({ isPaused, ...props }: PlayButtonProps) => {
<ActionIcon
className={styles.main}
icon={isPaused ? 'mediaPlay' : 'mediaPause'}
iconProps={{
size: 'lg',
}}
tooltip={
isPaused
? t('player.play', { postProcess: 'sentenceCase' })