apps/design-system/content/docs/components/popover.mdx
npx shadcn-ui@latest add popover
<Step>Install the following dependencies:</Step>
npm install @radix-ui/react-popover
<Step>Copy and paste the following code into your project.</Step>
<ComponentSource name="popover" /><Step>Update the import paths to match your project setup.</Step>
</Steps> </TabsContent> </Tabs>import { Popover, PopoverContent, PopoverTrigger } from '@/components/ui/popover'
<Popover>
<PopoverTrigger>Open</PopoverTrigger>
<PopoverContent>Place content for the popover here.</PopoverContent>
</Popover>