"use client"; import { Primitive } from "../../utils/Primitive"; import { type ComponentPropsWithoutRef, type ComponentRef, forwardRef, } from "react"; type PrimitiveDivProps = ComponentPropsWithoutRef; export namespace AttachmentPrimitiveRoot { export type Element = ComponentRef; /** * Props for the AttachmentPrimitive.Root component. * Accepts all standard div element props. */ export type Props = PrimitiveDivProps; } /** * The root container component for an attachment. * * This component provides the foundational wrapper for attachment-related components * and content. It serves as the context provider for attachment state and actions. * * @example * ```tsx * * * * * ``` */ export const AttachmentPrimitiveRoot = forwardRef< AttachmentPrimitiveRoot.Element, AttachmentPrimitiveRoot.Props >((props, ref) => { return ; }); AttachmentPrimitiveRoot.displayName = "AttachmentPrimitive.Root";