()
| 146 | ); |
| 147 | |
| 148 | const ShuttingDownLifecycle: FC = () => { |
| 149 | return ( |
| 150 | <Tooltip> |
| 151 | <TooltipTrigger asChild> |
| 152 | <div |
| 153 | role="status" |
| 154 | aria-label="Stopping..." |
| 155 | className={cn(statusDotBaseClassName, statusDotConnectingClassName)} |
| 156 | /> |
| 157 | </TooltipTrigger> |
| 158 | <TooltipContent side="bottom">Stopping...</TooltipContent> |
| 159 | </Tooltip> |
| 160 | ); |
| 161 | }; |
| 162 | |
| 163 | const ShutdownTimeoutLifecycle: FC<AgentStatusProps> = ({ agent }) => ( |
| 164 | <AgentWarningTooltip |