ultisuite-client/components/gmail/right-panel.tsx
2026-05-15 17:40:17 +02:00

25 lines
908 B
TypeScript

"use client"
import { Calendar, Users, CheckSquare, Plus } from "lucide-react"
import { Button } from "@/components/ui/button"
export function RightPanel() {
return (
<aside className="hidden w-10 shrink-0 flex-col items-center gap-2 bg-transparent py-3 sm:flex">
<Button variant="ghost" size="icon" className="h-9 w-9 text-gray-600 rounded-full">
<Calendar className="h-4 w-4" />
</Button>
<Button variant="ghost" size="icon" className="h-9 w-9 text-gray-600 rounded-full">
<CheckSquare className="h-4 w-4" />
</Button>
<Button variant="ghost" size="icon" className="h-9 w-9 text-gray-600 rounded-full">
<Users className="h-4 w-4" />
</Button>
<div className="flex-1" />
<Button variant="ghost" size="icon" className="h-9 w-9 text-gray-600 rounded-full">
<Plus className="h-4 w-4" />
</Button>
</aside>
)
}