diff options
author | Ty Dunn <ty@tydunn.com> | 2023-06-05 22:54:18 +0200 |
---|---|---|
committer | Ty Dunn <ty@tydunn.com> | 2023-06-05 22:54:18 +0200 |
commit | 25aa481ef8b341e2216393da0768c9953bf25fec (patch) | |
tree | 90c8206e21e570f381d7c49c6ebefeeac25f352e /extension/react-app/src/components/ContinueButton.tsx | |
parent | 5f3d975cb3bef13769cb19ff3f604fe42cc9ee5d (diff) | |
parent | 8e5f5fc5c92ebc77578ffda5ce1fbc35bea60016 (diff) | |
download | sncontinue-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.tsx | 8 |
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 |