import type React from 'react'; import type { FC } from 'react'; import { Dialog } from '@base-ui/react/dialog'; import { cn } from '@wener/console'; export const DaisyDrawerTrigger = Dialog.Trigger; export const DaisyDrawerRoot = Dialog.Root; export const DaisyDrawerPortal = Dialog.Portal; type OverlayProps = React.ComponentProps & {}; export const DaisyDrawerOverlay: FC = ({ children, className, ...props }) => { return ( {children} ); }; export type DaisyDrawerContentProps = React.ComponentProps & {}; export const DaisyDrawerContent: FC = ({ className, children, ...props }) => { return ( {children} ); }; type TitleProps = React.ComponentProps & {}; export const DaisyDrawerTitle: FC = ({ children, className, ...props }) => { return ( {children} ); }; type DescriptionProps = React.ComponentProps & {}; export const DaisyDrawerDescription: FC = ({ children, ...props }) => { return {children}; }; export const DaisyDrawer = { Trigger: DaisyDrawerTrigger, Root: DaisyDrawerRoot, Portal: DaisyDrawerPortal, Overlay: DaisyDrawerOverlay, Content: DaisyDrawerContent, Title: DaisyDrawerTitle, Description: DaisyDrawerDescription, } as const;