fix: correct IconButton fill and Box gap types in VoiceMessageRecorder

- fill="Solid" → fill="Soft" (valid values: Soft | None)
- gap="50" → gap="100" (valid sizes: 100–700)

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-05-23 12:36:10 -04:00
parent 74284902c2
commit 1ae286ee74
+2 -2
View File
@@ -207,7 +207,7 @@ export function VoiceMessageRecorder({ onSend, onError }: VoiceRecorderProps) {
</Text>
<Box
alignItems="Center"
gap="50"
gap="100"
style={{ height: toRem(20), overflow: 'hidden', flexShrink: 0 }}
>
{waveformBars.map((h, i) => (
@@ -228,7 +228,7 @@ export function VoiceMessageRecorder({ onSend, onError }: VoiceRecorderProps) {
onClick={stopRecording}
aria-label="Stop recording"
variant="Primary"
fill="Solid"
fill="Soft"
size="300"
radii="300"
title="Stop recording"