import React from "react"; import { Span } from "paintcannon-react"; import { useColor } from "../theme.ts"; import { TerminalFlex } from "./terminal-flex.tsx"; export function ToolCallRow({ name, children }: { name: string; children: React.ReactNode }) { const themeColor = useColor(); return ( {name}:{" "} {children} ); }