import { IconHelpCircle } from "@tabler/icons-react"; import type { ReactNode } from "react"; import { cn } from "../utils.js"; interface AgentTabFrameProps { title: string; description: string; helpHref?: string; helpLabel?: string; actions?: ReactNode; children: ReactNode; className?: string; } /** Shared settings surface for Manage agent page tabs. */ export function AgentTabFrame({ title, description, helpHref, helpLabel, actions, children, className, }: AgentTabFrameProps) { return (
); }