import type { AnalysisRow } from "../api/chat"; import { Icon } from "./Icon"; type Props = { rows: AnalysisRow[]; heading?: string; }; function RightCol({ text, style, }: { text: string; style?: string; }) { const muted = style === "muted"; const success = style === "success"; return ( {text} ); } export function AnalysisCard({ rows, heading = "Analyzing request & catalog match", }: Props) { return (