fixed assignments view once again
This commit is contained in:
49
client/src/components/DeleteConfirmation.tsx
Normal file
49
client/src/components/DeleteConfirmation.tsx
Normal file
@@ -0,0 +1,49 @@
|
||||
import {
|
||||
Button,
|
||||
Modal,
|
||||
ModalBody,
|
||||
ModalContent,
|
||||
ModalFooter,
|
||||
ModalHeader,
|
||||
} from "@heroui/react";
|
||||
import React from "react";
|
||||
import { TrashCan } from "@carbon/icons-react";
|
||||
|
||||
export default function DeleteConfirmation(props: {
|
||||
isOpen: boolean;
|
||||
onOpenChange: (isOpen: boolean) => void;
|
||||
children: React.ReactNode;
|
||||
header: React.ReactNode;
|
||||
onDelete?: () => void;
|
||||
}) {
|
||||
return (
|
||||
<Modal
|
||||
isOpen={props.isOpen}
|
||||
onOpenChange={(isOpen) => {
|
||||
props.onOpenChange(isOpen);
|
||||
}}
|
||||
shadow={"none" as "sm"}
|
||||
backdrop="blur"
|
||||
className="bg-accent-5"
|
||||
>
|
||||
<ModalContent>
|
||||
<ModalHeader>
|
||||
<h1 className="text-2xl">{props.header}</h1>
|
||||
</ModalHeader>
|
||||
<ModalBody>{props.children}</ModalBody>
|
||||
<ModalFooter>
|
||||
<Button variant="bordered" onPress={() => props.onOpenChange(false)}>
|
||||
Cancel
|
||||
</Button>
|
||||
<Button
|
||||
startContent={<TrashCan />}
|
||||
color="danger"
|
||||
onPress={() => props.onDelete?.()}
|
||||
>
|
||||
Delete event
|
||||
</Button>
|
||||
</ModalFooter>
|
||||
</ModalContent>
|
||||
</Modal>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user