You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
1.0 KiB
JavaScript
38 lines
1.0 KiB
JavaScript
import React from "react";
|
|
|
|
export default function ModalConfirm(props) {
|
|
const { isOpen, toggle, onConfirm = () => {} } = props;
|
|
|
|
const handleConfirm = () => {
|
|
onConfirm();
|
|
toggle();
|
|
};
|
|
|
|
return (
|
|
<div
|
|
className="modal"
|
|
style={
|
|
isOpen
|
|
? {
|
|
opacity: 1,
|
|
pointerEvents: "auto",
|
|
visibility: "visible",
|
|
}
|
|
: {}
|
|
}
|
|
>
|
|
<div className="modal-box text-center m-auto">
|
|
<h1 className="font-bold text-3xl py-8">Hapus Item ?</h1>
|
|
<div className="modal-action">
|
|
<div onClick={handleConfirm} className="btn btn-accent">
|
|
Ya
|
|
</div>
|
|
<div onClick={toggle} className="btn btn-neutral">
|
|
Batal
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|