# ThreadListItemMorePrimitive URL: /docs/api-reference/primitives/thread-list-item-more 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). Anatomy \[#anatomy] ```tsx import { ThreadListItemPrimitive, ThreadListItemMorePrimitive } from "@assistant-ui/react"; const ThreadListItemMore = () => ( More options Archive Delete ); ``` API Reference \[#api-reference] Root \[#root] Contains all parts of the dropdown menu. Wraps Radix UI's `DropdownMenu.Root`. Trigger \[#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 \[#complete-thread-list-item-with-more-menu] ```tsx const ThreadListItem = () => ( Archive ); ```