import type { ReactNode } from "react"; import clsx from "clsx"; type GlowWrapperProps = { children: ReactNode; className?: string; }; const GlowWrapper = ({ children, className }: GlowWrapperProps) => { return (
{children}
); }; export default GlowWrapper;