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