import { type LucideIcon } from 'lucide-react'; import { Button } from '@/components/ui/button'; interface TopBarAction { id: string; icon: LucideIcon; title: string; onClick: () => void; } interface TopBarActionsProps { actions: TopBarAction[]; } export default function TopBarActions({ actions }: TopBarActionsProps) { return (