summaryrefslogtreecommitdiff
path: root/extension/react-app/src/components/ContinueButton.tsx
blob: 5295799a408676ef7e7d1238bfec0169c54133ad (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
44
45
46
47
48
49
50
51
import styled, { keyframes } from "styled-components";
import { Button } from ".";
import { Play } from "@styled-icons/heroicons-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: linear-gradient(
    95.23deg,
    #be1a55 14.44%,
    rgba(203, 27, 90, 0.4) 82.21%
  );

  &:hover {
    transition-delay: 0.5s;
    transition-property: background;
    background: linear-gradient(
      45deg,
      #be1a55 14.44%,
      rgba(203, 27, 90, 0.4) 82.21%
    );
  }
`;

function ContinueButton(props: { onClick?: () => void; hidden?: boolean }) {
  const vscMediaUrl = useSelector(
    (state: RootStore) => state.config.vscMediaUrl
  );

  return (
    <StyledButton
      hidden={props.hidden}
      className="m-auto"
      onClick={props.onClick}
    >
      {vscMediaUrl ? (
        <img src={`${vscMediaUrl}/play_button.png`} width="22px" />
      ) : (
        <Play />
      )}
      Continue
    </StyledButton>
  );
}

export default ContinueButton;