22 lines
546 B
JavaScript
22 lines
546 B
JavaScript
import { jsx } from "react/jsx-runtime";
|
|
import { Transition } from "@headlessui/react";
|
|
function ActionMessage({
|
|
on,
|
|
className,
|
|
children
|
|
}) {
|
|
return /* @__PURE__ */ jsx("div", { className, children: /* @__PURE__ */ jsx(
|
|
Transition,
|
|
{
|
|
show: on,
|
|
leave: "transition ease-in duration-1000",
|
|
"leave-from-class": "opacity-100",
|
|
leaveTo: "opacity-0",
|
|
children: /* @__PURE__ */ jsx("div", { className: "text-sm text-gray-600 dark:text-gray-400", children })
|
|
}
|
|
) });
|
|
}
|
|
export {
|
|
ActionMessage as A
|
|
};
|