'use client'; import { Box } from '@/ui/Box'; import { Text } from '@/ui/Text'; import { Activity } from 'lucide-react'; import { StatusIndicator } from '@/ui/StatusIndicator'; interface ActionsHeaderProps { title: string; } export function ActionsHeader({ title }: ActionsHeaderProps) { return ( {title} ); }