fix: changed mute track icon to more understandable ones (#550)

This commit is contained in:
vadi25 2025-08-14 14:30:22 +02:00 committed by GitHub
parent 0274fb6626
commit defff2fc46
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 4 deletions

View File

@ -22,8 +22,8 @@ import {
ZoomOut,
Bookmark,
Eye,
MicOff,
Mic,
VolumeOff,
Volume2,
} from "lucide-react";
import {
Tooltip,
@ -803,12 +803,12 @@ export function Timeline() {
>
<div className="flex items-center justify-end flex-1 min-w-0 gap-2">
{track.muted ? (
<MicOff
<VolumeOff
className="h-4 w-4 text-destructive cursor-pointer"
onClick={() => toggleTrackMute(track.id)}
/>
) : (
<Mic
<Volume2
className="h-4 w-4 text-muted-foreground cursor-pointer"
onClick={() => toggleTrackMute(track.id)}
/>