summaryrefslogtreecommitdiff
path: root/extension/react-app/src/components/ContinueButton.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/ContinueButton.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/ContinueButton.tsx')
-rw-r--r--extension/react-app/src/components/ContinueButton.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/extension/react-app/src/components/ContinueButton.tsx b/extension/react-app/src/components/ContinueButton.tsx
index 6d753988..6d03c820 100644
--- a/extension/react-app/src/components/ContinueButton.tsx
+++ b/extension/react-app/src/components/ContinueButton.tsx
@@ -1,6 +1,6 @@
import styled, { keyframes } from "styled-components";
import { Button } from ".";
-import { Play } from "@styled-icons/heroicons-outline";
+import { PlayIcon } from "@heroicons/react/24/outline";
import { useSelector } from "react-redux";
import { RootStore } from "../redux/store";
@@ -33,7 +33,7 @@ function ContinueButton(props: { onClick?: () => void; hidden?: boolean }) {
{vscMediaUrl ? (
<img src={`${vscMediaUrl}/play_button.png`} width="22px" />
) : (
- <Play />
+ <PlayIcon />
)}
CONTINUE
</StyledButton>