This commit is contained in:
Manav Rathi 2024-05-08 19:19:20 +05:30
parent ff25971611
commit 079bdbd4cd
No known key found for this signature in database

View file

@ -1,3 +1,4 @@
import { styled } from "@mui/material";
import { FilledCircleCheck } from "./FilledCircleCheck";
export const PairedSuccessfullyOverlay: React.FC = () => {
@ -44,3 +45,16 @@ export const PairedSuccessfullyOverlay: React.FC = () => {
</div>
);
};
export const PairingSuccessful_ = styled("div")`
position: fixed;
top: 0;
right: 0;
height: 100%;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
z-index: 100;
background-color: black;
`;