"use client" import { Clock, Users, Plus, Settings, Download, Share, Bell } from "lucide-react" import { Button } from "@/components/ui/button" import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card" import { Badge } from "@/components/ui/badge" import { Separator } from "@/components/ui/separator" interface QuickActionsProps { onNewEvent?: () => void onNewMeeting?: () => void onNewReminder?: () => void onSettings?: () => void } export function QuickActions({ onNewEvent, onNewMeeting, onNewReminder, onSettings }: QuickActionsProps) { const quickStats = [ { label: "Today's Events", value: "3", color: "bg-blue-500" }, { label: "This Week", value: "12", color: "bg-green-500" }, { label: "Pending", value: "2", color: "bg-orange-500" } ] return (
{/* Quick Stats */} Overview {quickStats.map((stat, index) => (
{stat.label}
{stat.value}
))} {/* Quick Actions */} Quick Actions {/* Upcoming Events */} Next Up

Team Standup

9:00 AM • Conference Room A

Design Review

2:00 PM • Virtual

) }