chore: Level attention to emoji and audio icons

This commit is contained in:
ggurdin 2025-12-18 13:08:29 -05:00
parent ee55f39346
commit 40cc517b82
No known key found for this signature in database
GPG key ID: A01CB41737CBB478
2 changed files with 2 additions and 0 deletions

View file

@ -46,6 +46,7 @@ class TokenFeedbackButton extends StatelessWidget {
final transcript = transcriptController.transcription ?? 'ERROR';
return IconButton(
color: Theme.of(context).iconTheme.color,
icon: const Icon(Icons.flag_outlined),
onPressed: enabled
? () {

View file

@ -78,6 +78,7 @@ class WordZoomWidget extends StatelessWidget {
children: [
onClose != null
? IconButton(
color: Theme.of(context).iconTheme.color,
icon: const Icon(Icons.close),
onPressed: onClose,
)