From 85d27c3b13b247471b1e686a8a54d74fffc20c1a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Tue, 18 Nov 2025 15:35:02 +0100 Subject: [PATCH] feat: standardize icon sizes and replace pan icon with UnfoldHorizontal MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Replaced CircleArrowOutUpRight pan icon with UnfoldHorizontal - Standardized all track control icons to h-3.5 w-3.5: - Volume, Pan, Mic, and Gauge icons now have consistent sizing - Improves visual consistency across the track control panel 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- components/tracks/Track.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/components/tracks/Track.tsx b/components/tracks/Track.tsx index 1f3c076..8aa4b49 100644 --- a/components/tracks/Track.tsx +++ b/components/tracks/Track.tsx @@ -1,7 +1,7 @@ 'use client'; import * as React from 'react'; -import { Volume2, VolumeX, Headphones, Trash2, ChevronDown, ChevronRight, CircleArrowOutUpRight, Upload, Plus, Mic, Gauge } from 'lucide-react'; +import { Volume2, VolumeX, Headphones, Trash2, ChevronDown, ChevronRight, UnfoldHorizontal, Upload, Plus, Mic, Gauge } from 'lucide-react'; import type { Track as TrackType } from '@/types/track'; import { Button } from '@/components/ui/Button'; import { Slider } from '@/components/ui/Slider'; @@ -528,7 +528,7 @@ export function Track({ {/* Pan */}
@@ -554,12 +554,12 @@ export function Track({