"use client"; import { Primitive } from "../../utils/Primitive"; import { type ComponentRef, forwardRef, type ComponentPropsWithoutRef, } from "react"; export namespace ErrorPrimitiveRoot { export type Element = ComponentRef; export type Props = ComponentPropsWithoutRef; } export const ErrorPrimitiveRoot = forwardRef< ErrorPrimitiveRoot.Element, ErrorPrimitiveRoot.Props >((props, forwardRef) => { return ; }); ErrorPrimitiveRoot.displayName = "ErrorPrimitive.Root";