summaryrefslogtreecommitdiff
path: root/extension/react-app/src/tabs
diff options
context:
space:
mode:
authorNate Sesti <sestinj@gmail.com>2023-06-15 18:22:35 -0700
committerNate Sesti <sestinj@gmail.com>2023-06-15 18:22:35 -0700
commita328d3671529935929ade8c0ca28ccb465699f8e (patch)
tree5ce2fd4208714a6fb7a01554262dfa992c3322a7 /extension/react-app/src/tabs
parent0da3647105a8098f9218e0d6c8105b9d60c1cb28 (diff)
downloadsncontinue-a328d3671529935929ade8c0ca28ccb465699f8e.tar.gz
sncontinue-a328d3671529935929ade8c0ca28ccb465699f8e.tar.bz2
sncontinue-a328d3671529935929ade8c0ca28ccb465699f8e.zip
hover icons for description
Diffstat (limited to 'extension/react-app/src/tabs')
-rw-r--r--extension/react-app/src/tabs/gui.tsx21
1 files changed, 9 insertions, 12 deletions
diff --git a/extension/react-app/src/tabs/gui.tsx b/extension/react-app/src/tabs/gui.tsx
index 05795cdf..279d052b 100644
--- a/extension/react-app/src/tabs/gui.tsx
+++ b/extension/react-app/src/tabs/gui.tsx
@@ -14,12 +14,12 @@ import StepContainer from "../components/StepContainer";
import useContinueGUIProtocol from "../hooks/useWebsocket";
import {
BookOpen,
- ChatBubbleOvalLeft,
ChatBubbleOvalLeftEllipsis,
Trash,
} from "@styled-icons/heroicons-outline";
import ComboBox from "../components/ComboBox";
import TextDialog from "../components/TextDialog";
+import HeaderButtonWithText from "../components/HeaderButtonWithText";
const TopGUIDiv = styled.div`
overflow: hidden;
@@ -366,30 +366,27 @@ function GUI(props: GUIProps) {
</TopGUIDiv>
<Footer>
<a href="https://continue.dev/docs" className="no-underline">
- <HeaderButton style={{ padding: "3px" }}>
- Continue Docs
+ <HeaderButtonWithText text="Continue Docs">
<BookOpen size="1.6em" />
- </HeaderButton>
+ </HeaderButtonWithText>
</a>
- <HeaderButton
- style={{ padding: "3px" }}
+ <HeaderButtonWithText
onClick={() => {
// Set dialog open
setShowFeedbackDialog(true);
}}
+ text="Feedback"
>
- Feedback
<ChatBubbleOvalLeftEllipsis size="1.6em" />
- </HeaderButton>
- <HeaderButton
+ </HeaderButtonWithText>
+ <HeaderButtonWithText
onClick={() => {
client?.sendClear();
}}
- style={{ padding: "3px" }}
+ text="Clear History"
>
- Clear History
<Trash size="1.6em" />
- </HeaderButton>
+ </HeaderButtonWithText>
</Footer>
</>
);