Skip to content

Commit

Permalink
feat(reply_bar): Update reply bar icon
Browse files Browse the repository at this point in the history
  • Loading branch information
realth000 committed Sep 18, 2024
1 parent 497505c commit 895c52e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/widgets/reply_bar/reply_bar.dart
Original file line number Diff line number Diff line change
Expand Up @@ -588,7 +588,7 @@ final class _ReplyBarState extends State<_ReplyBar> with LoggerMixin {
const Spacer(),
FilledButton.tonal(
onPressed: isSendingReply ? null : () => context.pop(),
child: const Icon(Icons.close_outlined),
child: const Icon(Icons.unfold_less),
),
sizedBoxW8H8,
// Send Button
Expand All @@ -599,7 +599,7 @@ final class _ReplyBarState extends State<_ReplyBar> with LoggerMixin {
: null,
child: isSendingReply
? sizedCircularProgressIndicator
: const Icon(Icons.send_outlined),
: const Icon(Icons.send),
),
],
),
Expand Down

0 comments on commit 895c52e

Please sign in to comment.