summaryrefslogtreecommitdiff
path: root/extension/react-app/src/components/UserInputContainer.tsx
diff options
context:
space:
mode:
authorNate Sesti <33237525+sestinj@users.noreply.github.com>2023-08-03 01:16:34 -0700
committerGitHub <noreply@github.com>2023-08-03 01:16:34 -0700
commit9c3f3e1aadddc0f77736a0078a204f7ab082be8d (patch)
tree19941667006e92ee3204c9d76f13521bd27621f2 /extension/react-app/src/components/UserInputContainer.tsx
parent9c07a0ee6cc4eb12518ecab894b197562837e737 (diff)
parent01ea5e221db410c1ac1e138caa80a6385458fe9b (diff)
downloadsncontinue-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/components/UserInputContainer.tsx')
-rw-r--r--extension/react-app/src/components/UserInputContainer.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/extension/react-app/src/components/UserInputContainer.tsx b/extension/react-app/src/components/UserInputContainer.tsx
index 0ff3e74f..d44be38e 100644
--- a/extension/react-app/src/components/UserInputContainer.tsx
+++ b/extension/react-app/src/components/UserInputContainer.tsx
@@ -3,7 +3,7 @@ import ReactMarkdown from "react-markdown";
import styled from "styled-components";
import { buttonColor, secondaryDark, vscBackground } from ".";
import HeaderButtonWithText from "./HeaderButtonWithText";
-import { Play, XMark } from "@styled-icons/heroicons-outline";
+import { XMarkIcon } from "@heroicons/react/24/outline";
import { RootStore } from "../redux/store";
import { useSelector } from "react-redux";
import { HistoryNode } from "../../../schema/HistoryNode";
@@ -37,7 +37,7 @@ const UserInputContainer = (props: UserInputContainerProps) => {
}}
text="Delete"
>
- <XMark size="1.6em" />
+ <XMarkIcon width="1.5em" height="1.5em" />
</HeaderButtonWithText>
</div>
</StyledDiv>