function FileSearchCall()

in components/ToolCall.tsx [91:102]


function FileSearchCall({ toolCall }: ToolCallProps) {
  return (
    <div className="flex gap-2 items-center text-[#ED6A5E] justify-end w-full mb-4 mr-2">
      <BookOpenText size={16} />
      <div className="text-sm font-medium mb-0.5">
        {toolCall.status === "completed"
          ? "Searched files"
          : "Searching files..."}
      </div>
    </div>
  );
}