@theguild/components
Version:
13 lines (12 loc) • 448 B
JavaScript
"use client";
import { jsx } from "react/jsx-runtime";
import { usePathname } from "next/navigation";
import { cn } from "../cn";
const Body = ({ lightOnlyPages, children, className, ...rest }) => {
const pathname = usePathname();
const isLightOnlyPage = lightOnlyPages?.includes(pathname);
return /* @__PURE__ */ jsx("body", { className: cn(className, isLightOnlyPage && "light text-green-1000"), ...rest, children });
};
export {
Body
};