import * as React from "react"
import { Drawer as DrawerPrimitive } from "vaul"
import { cn } from "@/lib/utils"
function Drawer({
...props
}) {
return ;
}
function DrawerTrigger({
...props
}) {
return ;
}
function DrawerPortal({
...props
}) {
return ;
}
function DrawerClose({
...props
}) {
return ;
}
function DrawerOverlay({
className,
...props
}) {
return (
);
}
function DrawerContent({
className,
children,
...props
}) {
return (
{children}
);
}
function DrawerHeader({
className,
...props
}) {
return (
);
}
function DrawerFooter({
className,
...props
}) {
return (
);
}
function DrawerTitle({
className,
...props
}) {
return (
);
}
function DrawerDescription({
className,
...props
}) {
return (
);
}
export {
Drawer,
DrawerPortal,
DrawerOverlay,
DrawerTrigger,
DrawerClose,
DrawerContent,
DrawerHeader,
DrawerFooter,
DrawerTitle,
DrawerDescription,
}