"use client"; import { type ComponentRef, forwardRef } from "react"; import type { DropdownMenu as DropdownMenuPrimitive } from "radix-ui"; import type { WithRenderPropProps } from "../../utils/Primitive"; import { DropdownMenuRenderItem } from "../dropdownMenuRenderPrimitives"; import { type ScopedProps, useDropdownMenuScope } from "./scope"; export namespace ThreadListItemMorePrimitiveItem { export type Element = ComponentRef; export type Props = WithRenderPropProps; } export const ThreadListItemMorePrimitiveItem = forwardRef< ThreadListItemMorePrimitiveItem.Element, ThreadListItemMorePrimitiveItem.Props >( ( { __scopeThreadListItemMore, ...rest }: ScopedProps, ref, ) => { const scope = useDropdownMenuScope(__scopeThreadListItemMore); return ; }, ); ThreadListItemMorePrimitiveItem.displayName = "ThreadListItemMorePrimitive.Item";