# ThreadListItemMorePrimitive URL: /docs/api-reference/primitives/thread-list-item-more Dropdown menu for additional thread actions like archive and delete. *** title: ThreadListItemMorePrimitive description: Dropdown menu for additional thread actions like archive and delete. --------------------------------------------------------------------------------- A dropdown menu for displaying additional actions on a thread list item. Built on top of [Radix UI Dropdown Menu](https://www.radix-ui.com/primitives/docs/components/dropdown-menu). import { ParametersTable } from "@/components/docs/tables/ParametersTable"; ## Anatomy ```tsx import { ThreadListItemPrimitive, ThreadListItemMorePrimitive } from "@assistant-ui/react"; const ThreadListItemMore = () => ( More options Archive Delete ); ``` ## API Reference ### Root Contains all parts of the dropdown menu. Wraps Radix UI's `DropdownMenu.Root`. void", description: "Event handler called when the open state changes.", }, { name: "modal", type: "boolean", default: "true", description: "Whether the dropdown menu should be modal.", }, ]} /> ### Trigger The button that toggles the dropdown menu. Wraps Radix UI's `DropdownMenu.Trigger`. This primitive renders a ` Archive ); ``` ### Complete Thread List Item with More Menu ```tsx const ThreadListItem = () => ( Archive ); ```