"use client"; import type { ReactNode } from "react"; import { X } from "lucide-react"; import { cn } from "@/lib/utils"; import { Button } from "@/components/ui/button"; type DrawerProps = { open: boolean; onClose: () => void; title: string; description?: string; children: ReactNode; side?: "left" | "right"; widthClassName?: string; }; export function Drawer({ open, onClose, title, description, children, side = "left", widthClassName, }: DrawerProps) { return ( <>
); }