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