'use client' import { Button } from '@/components/ui/button' import { DemoTooltip } from '@/components/shared/demo-tooltip' import { debugProps } from '@/lib/debug' interface EmptyPanelProps { title?: string message: string action?: { label: string onClick: () => void disabled?: boolean } } export function EmptyPanel({ title, message, action }: EmptyPanelProps) { return (
{title}
}{message}
{action && (