diff options
author | Nate Sesti <sestinj@gmail.com> | 2023-06-05 12:09:13 -0400 |
---|---|---|
committer | Nate Sesti <sestinj@gmail.com> | 2023-06-05 12:09:13 -0400 |
commit | 9613750fd1ff48343e8d80ce5154733a4dbc55d7 (patch) | |
tree | 3bf81bdabf4a5232d99266a1e1a06ffbfc60a4d6 /extension/react-app/src/components/ContinueButton.tsx | |
parent | 99d0cf12dcd1481e719e78483fc7df080dc95954 (diff) | |
download | sncontinue-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.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 |