import type { ReactNode } from "react"; export function DividerText({ children }: { children: ReactNode }) { return (
{children}
); }