diff options
author | Nate Sesti <33237525+sestinj@users.noreply.github.com> | 2023-08-03 01:16:34 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-03 01:16:34 -0700 |
commit | 9c3f3e1aadddc0f77736a0078a204f7ab082be8d (patch) | |
tree | 19941667006e92ee3204c9d76f13521bd27621f2 /extension/react-app/src/pages/gui.tsx | |
parent | 9c07a0ee6cc4eb12518ecab894b197562837e737 (diff) | |
parent | 01ea5e221db410c1ac1e138caa80a6385458fe9b (diff) | |
download | sncontinue-9c3f3e1aadddc0f77736a0078a204f7ab082be8d.tar.gz sncontinue-9c3f3e1aadddc0f77736a0078a204f7ab082be8d.tar.bz2 sncontinue-9c3f3e1aadddc0f77736a0078a204f7ab082be8d.zip |
Merge pull request #337 from continuedev/package-python
Package python
Diffstat (limited to 'extension/react-app/src/pages/gui.tsx')
-rw-r--r-- | extension/react-app/src/pages/gui.tsx | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/extension/react-app/src/pages/gui.tsx b/extension/react-app/src/pages/gui.tsx index bf8d8281..3ae8e14e 100644 --- a/extension/react-app/src/pages/gui.tsx +++ b/extension/react-app/src/pages/gui.tsx @@ -13,10 +13,10 @@ import { HistoryNode } from "../../../schema/HistoryNode"; import StepContainer from "../components/StepContainer"; import { GUIClientContext } from "../App"; import { - BookOpen, - ChatBubbleOvalLeftEllipsis, - Trash, -} from "@styled-icons/heroicons-outline"; + BookOpenIcon, + ChatBubbleOvalLeftEllipsisIcon, + TrashIcon, +} from "@heroicons/react/24/outline"; import ComboBox from "../components/ComboBox"; import TextDialog from "../components/TextDialog"; import HeaderButtonWithText from "../components/HeaderButtonWithText"; @@ -536,14 +536,14 @@ If you already have an LLM deployed on your own infrastructure, or would like to }} text="Clear" > - <Trash size="1.6em" /> + <TrashIcon width="1.5em" height="1.5em" /> </HeaderButtonWithText> <a href="https://continue.dev/docs/how-to-use-continue" className="no-underline" > <HeaderButtonWithText text="Docs"> - <BookOpen size="1.6em" /> + <BookOpenIcon width="1.5em" height="1.5em" /> </HeaderButtonWithText> </a> <HeaderButtonWithText @@ -557,7 +557,7 @@ If you already have an LLM deployed on your own infrastructure, or would like to }} text="Feedback" > - <ChatBubbleOvalLeftEllipsis size="1.6em" /> + <ChatBubbleOvalLeftEllipsisIcon width="1.5em" height="1.5em" /> </HeaderButtonWithText> </Footer> </> |