"use client";
import { Button } from "@/components/ui/button";
import {
Drawer,
DrawerClose,
DrawerContent,
DrawerDescription,
DrawerFooter,
DrawerHeader,
DrawerTitle,
DrawerTrigger,
} from "@/components/ui/drawer";
export const title = "Bottom Drawer with Snap Points";
const Example = () => (
<Drawer snapPoints={["148px", "355px", 1]}>
<DrawerTrigger asChild>
<Button variant="outline">Open with Snap Points</Button>
</DrawerTrigger>
<DrawerContent>
<DrawerHeader>
<DrawerTitle>Snap Points Drawer</DrawerTitle>
<DrawerDescription>
Drag to snap to 148px, 355px, or 100% of screen height.
</DrawerDescription>
</DrawerHeader>
<div className="p-4">
<p className="mb-4 text-sm text-muted-foreground">
This drawer has three snap points. Try dragging it to different
heights and it will snap to the nearest point.
</p>
<ul className="space-y-2 text-sm">
<li>• 148px - Quick preview</li>
<li>• 355px - Half screen</li>
<li>• 100% - Full view</li>
</ul>
</div>
<DrawerFooter>
<DrawerClose asChild>
<Button variant="outline">Close</Button>
</DrawerClose>
</DrawerFooter>
</DrawerContent>
</Drawer>
);
export default Example;