summaryrefslogtreecommitdiff
path: root/extension/react-app/src/components/ContinueButton.tsx
diff options
context:
space:
mode:
authorTy Dunn <ty@tydunn.com>2023-06-05 22:54:18 +0200
committerTy Dunn <ty@tydunn.com>2023-06-05 22:54:18 +0200
commit25aa481ef8b341e2216393da0768c9953bf25fec (patch)
tree90c8206e21e570f381d7c49c6ebefeeac25f352e /extension/react-app/src/components/ContinueButton.tsx
parent5f3d975cb3bef13769cb19ff3f604fe42cc9ee5d (diff)
parent8e5f5fc5c92ebc77578ffda5ce1fbc35bea60016 (diff)
downloadsncontinue-25aa481ef8b341e2216393da0768c9953bf25fec.tar.gz
sncontinue-25aa481ef8b341e2216393da0768c9953bf25fec.tar.bz2
sncontinue-25aa481ef8b341e2216393da0768c9953bf25fec.zip
Merge branch 'main' of github.com:continuedev/continue into main
Diffstat (limited to 'extension/react-app/src/components/ContinueButton.tsx')
-rw-r--r--extension/react-app/src/components/ContinueButton.tsx8
1 files changed, 6 insertions, 2 deletions
diff --git a/extension/react-app/src/components/ContinueButton.tsx b/extension/react-app/src/components/ContinueButton.tsx
index 11dc7a92..c6117bf9 100644
--- a/extension/react-app/src/components/ContinueButton.tsx
+++ b/extension/react-app/src/components/ContinueButton.tsx
@@ -24,9 +24,13 @@ let StyledButton = styled(Button)`
}
`;
-function ContinueButton(props: { onClick?: () => void }) {
+function ContinueButton(props: { onClick?: () => void; hidden?: boolean }) {
return (
- <StyledButton className="m-auto" onClick={props.onClick}>
+ <StyledButton
+ hidden={props.hidden}
+ className="m-auto"
+ onClick={props.onClick}
+ >
<Play />
{/* <img src={"/continue_arrow.png"} width="16px"></img> */}
Continue