import React from 'react'; import { Panel } from './Panel'; import { Box } from './Box'; import { Button } from './Button'; import { Icon } from './Icon'; import { LucideIcon } from 'lucide-react'; interface QuickAction { label: string; icon: LucideIcon; onClick: () => void; variant?: 'primary' | 'secondary' | 'ghost'; } interface QuickActionsPanelProps { actions: QuickAction[]; className?: string; } /** * QuickActionsPanel * * Provides fast access to common dashboard tasks. */ export function QuickActionsPanel({ actions, className = '' }: QuickActionsPanelProps) { return ( {actions.map((action, index) => ( ))} ); }