mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-11 09:51:40 +00:00
28 lines
666 B
TypeScript
28 lines
666 B
TypeScript
import { Button } from "@/styles/radix-nova/ui/button"
|
|
import {
|
|
Popover,
|
|
PopoverContent,
|
|
PopoverDescription,
|
|
PopoverHeader,
|
|
PopoverTitle,
|
|
PopoverTrigger,
|
|
} from "@/styles/radix-nova/ui/popover"
|
|
|
|
export function PopoverBasic() {
|
|
return (
|
|
<Popover>
|
|
<PopoverTrigger asChild>
|
|
<Button variant="outline">Open Popover</Button>
|
|
</PopoverTrigger>
|
|
<PopoverContent align="start">
|
|
<PopoverHeader>
|
|
<PopoverTitle>Dimensions</PopoverTitle>
|
|
<PopoverDescription>
|
|
Set the dimensions for the layer.
|
|
</PopoverDescription>
|
|
</PopoverHeader>
|
|
</PopoverContent>
|
|
</Popover>
|
|
)
|
|
}
|