diff options
Diffstat (limited to 'extension/react-app/src/components/ContinueButton.tsx')
-rw-r--r-- | extension/react-app/src/components/ContinueButton.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/extension/react-app/src/components/ContinueButton.tsx b/extension/react-app/src/components/ContinueButton.tsx index 6d753988..6d03c820 100644 --- a/extension/react-app/src/components/ContinueButton.tsx +++ b/extension/react-app/src/components/ContinueButton.tsx @@ -1,6 +1,6 @@ import styled, { keyframes } from "styled-components"; import { Button } from "."; -import { Play } from "@styled-icons/heroicons-outline"; +import { PlayIcon } from "@heroicons/react/24/outline"; import { useSelector } from "react-redux"; import { RootStore } from "../redux/store"; @@ -33,7 +33,7 @@ function ContinueButton(props: { onClick?: () => void; hidden?: boolean }) { {vscMediaUrl ? ( <img src={`${vscMediaUrl}/play_button.png`} width="22px" /> ) : ( - <Play /> + <PlayIcon /> )} CONTINUE </StyledButton> |