import classNames from "classnames"; import type { ReactNode } from "react"; interface Props { children: ReactNode; className?: string; } export function FormattedError({ children, className }: Props) { return (
      {children}
    
); }