mirror of
https://github.com/jetkvm/website.git
synced 2025-09-16 08:38:16 +00:00
56 lines
1.7 KiB
TypeScript
56 lines
1.7 KiB
TypeScript
import React, { Fragment } from "react";
|
|
import { Dialog, Transition } from "@headlessui/react";
|
|
import clsx from "clsx";
|
|
|
|
export default function Modal({
|
|
children,
|
|
className,
|
|
open,
|
|
onClose,
|
|
}: {
|
|
children: React.ReactNode;
|
|
className?: string;
|
|
open: boolean;
|
|
onClose: () => void;
|
|
}) {
|
|
return (
|
|
<Transition.Root show={open} as={Fragment}>
|
|
<Dialog as="div" className="relative z-10" onClose={onClose}>
|
|
<Transition.Child
|
|
as={Fragment}
|
|
enter="ease-out duration-300"
|
|
enterFrom="opacity-0"
|
|
enterTo="opacity-100"
|
|
leave="ease-in duration-200"
|
|
leaveFrom="opacity-100"
|
|
leaveTo="opacity-0"
|
|
>
|
|
<div className="fixed inset-0 bg-gray-500/75 transition-opacity" />
|
|
</Transition.Child>
|
|
|
|
<div className="fixed inset-0 z-10 w-screen overflow-y-auto">
|
|
<div className="flex min-h-full items-end justify-center p-4 text-center sm:items-center sm:p-0">
|
|
<Transition.Child
|
|
as={Fragment}
|
|
enter="ease-out duration-300"
|
|
enterFrom="opacity-0 translate-y-8 "
|
|
enterTo="opacity-100 translate-y-0"
|
|
leave="ease-in duration-300"
|
|
leaveFrom="opacity-100 translate-y-0"
|
|
leaveTo="opacity-0 translate-y-8"
|
|
>
|
|
<Dialog.Panel
|
|
className={clsx("pointer-events-none relative w-full sm:my-8", className)}
|
|
>
|
|
<div className="pointer-events-auto inline-block text-left">
|
|
{children}
|
|
</div>
|
|
</Dialog.Panel>
|
|
</Transition.Child>
|
|
</div>
|
|
</div>
|
|
</Dialog>
|
|
</Transition.Root>
|
|
);
|
|
}
|