import clsx from "clsx"; import React from "react"; import { FaPause, FaPlay, FaStop, FaUndo } from "react-icons/fa"; import { ImSpinner2 } from "react-icons/im"; import type { AgentLifecycle } from "../../services/agent/agent-run-model"; import Button from "../Button"; type AgentControlsProps = { disablePlay: boolean; lifecycle: AgentLifecycle; handlePlay: () => void; handlePause: () => void; handleStop: () => void; }; const AgentControls = ({ lifecycle, disablePlay, handlePlay, handlePause, handleStop, }: AgentControlsProps) => { return (
); }; export default AgentControls;