Open
Description
The code from the example:
// ... //
<DropdownMenu.Trigger>
<Button variant="soft">
Options
<DropdownMenu.TriggerIcon />
</Button>
</DropdownMenu.Trigger>
// ... //
But I don't understand why this is done, because DropdownMenu.Trigger is the button itself. Why put a button inside a button?
https://codesandbox.io/p/sandbox/white-surf-22ds39

Activity
sourabratabose commentedon Apr 1, 2025
DropdownMenu.Trigger is a component which renders a button itself. If you want to render your button instead of the one provided by radix set asChild attribute to true like
<DropdownMenu.Trigger asChild={true}> <button>Trigger</button> </DropdownMenu.Trigger>
longpoll commentedon Apr 1, 2025
That's exactly what I'm talking about. The problem is that the documentation describes exactly this implementation. That's why I created the issue to fix the inaccuracy in the documentation.