"use client"; import { ReactNode } from "react"; import { cn } from "@/lib/utils"; interface PanelProps { children: ReactNode; className?: string; } /** * Base panel container with consistent Rerun-style appearance. * No borders or rounded corners - panels should be flush against each other. */ export function Panel({ children, className }: PanelProps) { return (
{children}
); } interface PanelFooterProps { children: ReactNode; className?: string; } /** * Panel footer for keyboard shortcuts/hints. */ export function PanelFooter({ children, className }: PanelFooterProps) { return (
{children}
); }