export interface ErrorProps {
  dataTestId?: string;
  children: any;
  className?: string;
  direction?: "end" | "start";
  id?: string;
  style?: React.CSSProperties;
}
