Dialog (also known as Modal) component only comes in 1 variant
// Dialog reference
const dialogRef = useRef<HTMLDialogElement>(null);
// Showing the modal
dialogRef?.current?.showModal();
// Hiding the modal
dialogRef?.current?.close();
<!-- Dialog -->
<dialog className="kf-dialog" ref={dialogRef}>
<div className="kf-dialog-title">Dialog title</div>
<p className="mb-5">Lorem ipsum dolor sit amet consectetur adipisicing elit...</p><!-- Rest of the code -->
</dialog>