element-call/src/home/JoinExistingCallModal.jsx

20 lines
665 B
React
Raw Normal View History

2021-12-17 23:01:59 +00:00
import React from "react";
2022-01-06 01:00:02 +00:00
import { Modal, ModalContent } from "../Modal";
import { Button } from "../button";
2022-01-06 01:27:01 +00:00
import { FieldRow } from "../input/Input";
2021-12-17 23:01:59 +00:00
import styles from "./JoinExistingCallModal.module.css";
export function JoinExistingCallModal({ onJoin, ...rest }) {
return (
<Modal title="Join existing call?" isDismissable {...rest}>
<ModalContent>
<p>This call already exists, would you like to join?</p>
<FieldRow rightAlign className={styles.buttons}>
<Button onPress={rest.onClose}>No</Button>
<Button onPress={onJoin}>Yes, join call</Button>
</FieldRow>
</ModalContent>
</Modal>
);
}