Popover
shadcn docsInstallation
via Shadcn cli
pnpm dlx shadcn@latest add https://v3.neobrutalism.dev/r/popover.json
Manually
import * as PopoverPrimitive from "@radix-ui/react-popover"
import * as React from "react"
import { cn } from "@/lib/utils"
const Popover = PopoverPrimitive.Root
const PopoverTrigger = PopoverPrimitive.Trigger
const PopoverContent = React.forwardRef<
React.ElementRef<typeof PopoverPrimitive.Content>,
React.ComponentPropsWithoutRef<typeof PopoverPrimitive.Content>
>(({ className, align = "center", sideOffset = 4, ...props }, ref) => (
<PopoverPrimitive.Portal>
<PopoverPrimitive.Content
"z-50 w-72 rounded-base border-2 border-border bg-main p-4 font-base text-text outline-none data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2",
</PopoverPrimitive.Portal>
PopoverContent.displayName = PopoverPrimitive.Content.displayName
export { Popover, PopoverTrigger, PopoverContent }
Usage
import { Button } from '@/components/ui/button'
import { Input } from '@/components/ui/input'
import { Label } from '@/components/ui/label'
} from '@/components/ui/popover'
<Button variant="noShadow">Open popover</Button>
<PopoverContent className="w-80 text-mtext">
<div className="grid gap-4">
<div className="space-y-2">
<h4 className="font-heading leading-none">Dimensions</h4>
<p className="text-sm">Set the dimensions for the layer.</p>
<div className="grid gap-2">
<div className="grid grid-cols-3 items-center gap-4">
<Label htmlFor="width">Width</Label>
className="col-span-2 h-8"
<div className="grid grid-cols-3 items-center gap-4">
<Label htmlFor="maxWidth">Max. width</Label>
className="col-span-2 h-8"
<div className="grid grid-cols-3 items-center gap-4">
<Label htmlFor="height">Height</Label>
className="col-span-2 h-8"
<div className="grid grid-cols-3 items-center gap-4">
<Label htmlFor="maxHeight">Max. height</Label>
className="col-span-2 h-8"