import { PlayIcon, StopIcon } from "@heroicons/react/24/outline"; import { useEffect, useState } from "react"; import styled from "styled-components"; import { Button } from ".."; const StyledButton = styled(Button)<{ color?: string | null; isDisabled: boolean; showStop: boolean; }>` margin: auto; margin-top: 8px; margin-bottom: 16px; display: grid; width: 130px; grid-template-columns: 22px 1fr; align-items: center; background-color: ${(props) => `${props.color || "#be1b55"}${props.showStop ? "33" : ""}`}; opacity: ${(props) => (props.isDisabled ? 0.5 : 1.0)}; border: 1px solid ${(props) => (props.showStop ? props.color || "#be1b55" : "transparent")}; cursor: ${(props) => (props.isDisabled ? "default" : "pointer")}; &:hover:enabled { background-color: ${(props) => `${props.color || "#be1b55"}${props.showStop ? "33" : ""}`}; ${(props) => props.isDisabled ? "cursor: default;" : ` opacity: 0.7; `} } `; function ContinueButton(props: { onClick?: () => void; hidden?: boolean; disabled: boolean; showStop: boolean; }) { const [buttonColor, setButtonColor] = useState( localStorage.getItem("continueButtonColor") ); useEffect(() => { const handleStorageChange = (e: any) => { if (e.key === "continueButtonColor") { // Update your state or do whatever you need to do here setButtonColor(e.newValue); } }; window.addEventListener("storage", handleStorageChange); // Don't forget to cleanup the event listener return () => window.removeEventListener("storage", handleStorageChange); }, []); return ( ); } export default ContinueButton;