summaryrefslogtreecommitdiff
path: root/extension/react-app/src/components/ContinueButton.tsx
diff options
context:
space:
mode:
authorNate Sesti <sestinj@gmail.com>2023-06-05 12:09:13 -0400
committerNate Sesti <sestinj@gmail.com>2023-06-05 12:09:13 -0400
commit9613750fd1ff48343e8d80ce5154733a4dbc55d7 (patch)
tree3bf81bdabf4a5232d99266a1e1a06ffbfc60a4d6 /extension/react-app/src/components/ContinueButton.tsx
parent99d0cf12dcd1481e719e78483fc7df080dc95954 (diff)
downloadsncontinue-9613750fd1ff48343e8d80ce5154733a4dbc55d7.tar.gz
sncontinue-9613750fd1ff48343e8d80ce5154733a4dbc55d7.tar.bz2
sncontinue-9613750fd1ff48343e8d80ce5154733a4dbc55d7.zip
Enter button on user input
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