()
| 98 | }; |
| 99 | |
| 100 | const StartingLifecycle: FC = () => { |
| 101 | return ( |
| 102 | <Tooltip> |
| 103 | <TooltipTrigger asChild> |
| 104 | <div |
| 105 | role="status" |
| 106 | aria-label="Starting..." |
| 107 | className={cn(statusDotBaseClassName, statusDotConnectingClassName)} |
| 108 | /> |
| 109 | </TooltipTrigger> |
| 110 | <TooltipContent side="bottom">Starting...</TooltipContent> |
| 111 | </Tooltip> |
| 112 | ); |
| 113 | }; |
| 114 | |
| 115 | interface AgentStatusProps { |
| 116 | agent: WorkspaceAgent; |