"use client" import { Button } from "@/components/ui/button" import { Swords } from "lucide-react" export function AnalyzeAllButton() { const handleAnalyzeAll = () => { document.querySelectorAll("button[data-analyze-button]").forEach((button) => { ;(button as HTMLButtonElement).click() }) } return ( ) }