summaryrefslogtreecommitdiff
path: root/extension/react-app/src/components/UserInputContainer.tsx
diff options
context:
space:
mode:
authorNate Sesti <sestinj@gmail.com>2023-08-01 18:15:26 -0700
committerNate Sesti <sestinj@gmail.com>2023-08-01 18:15:26 -0700
commit6a3967838e1d1541404a17f9d684d7efceb28031 (patch)
tree910578c7b3ddd3fb4347bda46412e7b0dbcddda3 /extension/react-app/src/components/UserInputContainer.tsx
parent9d1be8859cba212d205b6290e00727b85c53fe09 (diff)
downloadsncontinue-6a3967838e1d1541404a17f9d684d7efceb28031.tar.gz
sncontinue-6a3967838e1d1541404a17f9d684d7efceb28031.tar.bz2
sncontinue-6a3967838e1d1541404a17f9d684d7efceb28031.zip
use hero-icons, instead of styled-icons/heroicons
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..ed11851f 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 className="h-6 w-6" />
</HeaderButtonWithText>
</div>
</StyledDiv>