summaryrefslogtreecommitdiff
path: root/extension/react-app/src/components/ComboBox.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/ComboBox.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/ComboBox.tsx')
-rw-r--r--extension/react-app/src/components/ComboBox.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/extension/react-app/src/components/ComboBox.tsx b/extension/react-app/src/components/ComboBox.tsx
index ba87cb9f..35c36726 100644
--- a/extension/react-app/src/components/ComboBox.tsx
+++ b/extension/react-app/src/components/ComboBox.tsx
@@ -15,7 +15,7 @@ import {
} from ".";
import PillButton from "./PillButton";
import HeaderButtonWithText from "./HeaderButtonWithText";
-import { DocumentPlus } from "@styled-icons/heroicons-outline";
+import { DocumentPlusIcon } from "@heroicons/react/24/outline";
import { ContextItem } from "../../../schema/FullState";
import { postVscMessage } from "../vscode";
import { GUIClientContext } from "../App";
@@ -297,7 +297,7 @@ const ComboBox = React.forwardRef((props: ComboBoxProps, ref) => {
props.onToggleAddContext();
}}
>
- <DocumentPlus width="1.6em"></DocumentPlus>
+ <DocumentPlusIcon className="h-6 w-6" />
</HeaderButtonWithText>
))}
</div>