mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-07-08 22:45:47 +00:00
63 lines
2.0 KiB
TypeScript
63 lines
2.0 KiB
TypeScript
import { Button } from "@/styles/base-nova/ui/button"
|
|
import { Input } from "@/styles/base-nova/ui/input"
|
|
import { Label } from "@/styles/base-nova/ui/label"
|
|
import {
|
|
Popover,
|
|
PopoverContent,
|
|
PopoverTrigger,
|
|
} from "@/styles/base-nova/ui/popover"
|
|
|
|
export default function PopoverDemo() {
|
|
return (
|
|
<Popover>
|
|
<PopoverTrigger render={<Button variant="outline" />}>
|
|
Open popover
|
|
</PopoverTrigger>
|
|
<PopoverContent className="w-80">
|
|
<div className="grid gap-4">
|
|
<div className="space-y-2">
|
|
<h4 className="leading-none font-medium">Dimensions</h4>
|
|
<p className="text-sm text-muted-foreground">
|
|
Set the dimensions for the layer.
|
|
</p>
|
|
</div>
|
|
<div className="grid gap-2">
|
|
<div className="grid grid-cols-3 items-center gap-4">
|
|
<Label htmlFor="width">Width</Label>
|
|
<Input
|
|
id="width"
|
|
defaultValue="100%"
|
|
className="col-span-2 h-8"
|
|
/>
|
|
</div>
|
|
<div className="grid grid-cols-3 items-center gap-4">
|
|
<Label htmlFor="maxWidth">Max. width</Label>
|
|
<Input
|
|
id="maxWidth"
|
|
defaultValue="300px"
|
|
className="col-span-2 h-8"
|
|
/>
|
|
</div>
|
|
<div className="grid grid-cols-3 items-center gap-4">
|
|
<Label htmlFor="height">Height</Label>
|
|
<Input
|
|
id="height"
|
|
defaultValue="25px"
|
|
className="col-span-2 h-8"
|
|
/>
|
|
</div>
|
|
<div className="grid grid-cols-3 items-center gap-4">
|
|
<Label htmlFor="maxHeight">Max. height</Label>
|
|
<Input
|
|
id="maxHeight"
|
|
defaultValue="none"
|
|
className="col-span-2 h-8"
|
|
/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</PopoverContent>
|
|
</Popover>
|
|
)
|
|
}
|