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.
|
|
|
import React from 'react'
|
|
|
|
|
|
|
|
export default function ModalConfirm(props) {
|
|
|
|
const { isOpen, toggle, onConfirm = () => {} } = props
|
|
|
|
|
|
|
|
const handleConfirm = () => {
|
|
|
|
onConfirm()
|
|
|
|
toggle()
|
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div
|
|
|
|
className="modal modal-bottom sm:modal-middle pb-10"
|
|
|
|
style={
|
|
|
|
isOpen
|
|
|
|
? {
|
|
|
|
opacity: 1,
|
|
|
|
pointerEvents: 'auto',
|
|
|
|
visibility: 'visible',
|
|
|
|
}
|
|
|
|
: {}
|
|
|
|
}
|
|
|
|
>
|
|
|
|
<div className="modal-box text-center">
|
|
|
|
<h1 className="font-bold text-3xl py-8">Hapus Item ?</h1>
|
|
|
|
<div className="modal-action">
|
|
|
|
<div onClick={handleConfirm} className="btn btn-primary">
|
|
|
|
Ya
|
|
|
|
</div>
|
|
|
|
<div onClick={toggle} className="btn btn-secondary">
|
|
|
|
Batal
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|