mirror of
https://github.com/immich-app/immich
synced 2025-10-17 18:19:27 +00:00
17 lines
556 B
Dart
17 lines
556 B
Dart
|
|
import 'package:flutter/material.dart';
|
||
|
|
import 'package:hooks_riverpod/hooks_riverpod.dart';
|
||
|
|
import 'package:immich_mobile/extensions/translate_extensions.dart';
|
||
|
|
import 'package:immich_mobile/presentation/widgets/action_buttons/base_action_button.widget.dart';
|
||
|
|
|
||
|
|
class UnarchiveActionButton extends ConsumerWidget {
|
||
|
|
const UnarchiveActionButton({super.key});
|
||
|
|
|
||
|
|
@override
|
||
|
|
Widget build(BuildContext context, WidgetRef ref) {
|
||
|
|
return BaseActionButton(
|
||
|
|
iconData: Icons.unarchive_outlined,
|
||
|
|
label: "unarchive".t(context: context),
|
||
|
|
);
|
||
|
|
}
|
||
|
|
}
|