blob: 6d03c820c2d930ea2fcd1b949b0775b1904b0d54 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
import styled, { keyframes } from "styled-components";
import { Button } from ".";
import { PlayIcon } from "@heroicons/react/24/outline";
import { useSelector } from "react-redux";
import { RootStore } from "../redux/store";
let StyledButton = styled(Button)`
margin: auto;
margin-top: 8px;
display: grid;
grid-template-columns: 30px 1fr;
align-items: center;
background: #be1b55;
&:hover {
transition-property: "background";
opacity: 0.7;
}
`;
function ContinueButton(props: { onClick?: () => void; hidden?: boolean }) {
const vscMediaUrl = useSelector(
(state: RootStore) => state.config.vscMediaUrl
);
return (
<StyledButton
hidden={props.hidden}
style={{ fontSize: "10px" }}
className="m-auto press-start-2p"
onClick={props.onClick}
>
{vscMediaUrl ? (
<img src={`${vscMediaUrl}/play_button.png`} width="22px" />
) : (
<PlayIcon />
)}
CONTINUE
</StyledButton>
);
}
export default ContinueButton;
|