import { WrenchScrewdriverIcon } from "@heroicons/react/16/solid"; import { plural } from "../lib/plural"; export function ToolCallCount({ count, errored = 0, className = "", }: { count: number; errored?: number; className?: string; }) { return (
); }