Unstyled, accessible components for building high‑quality design systems and web apps in React.
Comes with components such as Dialog, Popover, Dropdown Menu, Toggle, …
import * as Popover from '@radix-ui/react-popover';
function App() {
return (
<Popover.Root>
<Popover.Trigger>...</Popover.Trigger>
<Popover.Content>...</Popover.Content>
</Popover.Root>
);
}
Installation per NPM:
npm install @radix-ui/react-popover