Dialog (also known as Modal) component only comes in 1 variant
// Dialog referenceconst dialogRef = useRef<HTMLDialogElement>(null);// Showing the modaldialogRef?.current?.showModal();// Hiding the modaldialogRef?.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>