From 1870cc0f6ef880147c22ded614360095198c13ed Mon Sep 17 00:00:00 2001 From: alma Date: Wed, 30 Apr 2025 16:20:20 +0200 Subject: [PATCH] courrier formatting --- components/email/BulkActionsToolbar.tsx | 98 ++++++++++++++++--------- 1 file changed, 64 insertions(+), 34 deletions(-) diff --git a/components/email/BulkActionsToolbar.tsx b/components/email/BulkActionsToolbar.tsx index cd445d7b..414e249b 100644 --- a/components/email/BulkActionsToolbar.tsx +++ b/components/email/BulkActionsToolbar.tsx @@ -3,6 +3,12 @@ import React from 'react'; import { Trash2, Archive, EyeOff } from 'lucide-react'; import { Button } from '@/components/ui/button'; +import { + Tooltip, + TooltipContent, + TooltipProvider, + TooltipTrigger, +} from "@/components/ui/tooltip"; interface BulkActionsToolbarProps { selectedCount: number; @@ -14,40 +20,64 @@ export default function BulkActionsToolbar({ onBulkAction }: BulkActionsToolbarProps) { return ( -
-
- - {selectedCount} selected - -
-
- - - +
+ + {selectedCount} selected + +
+ + + + + + +

Mark as read

+
+
+
+ + + + + + + +

Archive

+
+
+
+ + + + + + + +

Delete

+
+
+
);