diff --git a/gui/src/components/mainInput/Lump/LumpToolbar.tsx b/gui/src/components/mainInput/Lump/LumpToolbar.tsx index e937467267..6abe4525ec 100644 --- a/gui/src/components/mainInput/Lump/LumpToolbar.tsx +++ b/gui/src/components/mainInput/Lump/LumpToolbar.tsx @@ -1,5 +1,6 @@ import { useContext } from "react"; import styled from "styled-components"; +import { AnimatedEllipsis } from "../.."; import { IdeMessengerContext } from "../../../context/IdeMessenger"; import { useAppDispatch, useAppSelector } from "../../../redux/hooks"; import { cancelStream } from "../../../redux/thunks/cancelStream"; @@ -8,7 +9,8 @@ import { BlockSettingsTopToolbar } from "./BlockSettingsTopToolbar"; const Container = styled.div` display: flex; - justify-content: flex-end; + justify-content: space-between; + align-items: center; width: 100%; `; @@ -24,6 +26,15 @@ interface TopToolbarProps { setSelectedSection: (value: string | null) => void; } +function GeneratingIndicator() { + return ( +