import * as SheetPrimitives from "@radix-ui/react-dialog"; import * as React from "react"; import classNames from "@calcom/lib/classNames"; import { Button } from "../button"; const Sheet = (props: React.ComponentPropsWithoutRef) => { return ; }; Sheet.displayName = "Sheet"; const SheetTrigger = React.forwardRef< React.ElementRef, React.ComponentPropsWithoutRef >(({ className, ...props }, ref) => { return ; }); SheetTrigger.displayName = "Sheet.Trigger"; const SheetClose = React.forwardRef< React.ElementRef, React.ComponentPropsWithoutRef >(({ className, ...props }, ref) => { return ; }); SheetClose.displayName = "Sheet.Close"; const SheetPortal = SheetPrimitives.Portal; SheetPortal.displayName = "SheetPortal"; const SheetOverlay = React.forwardRef< React.ElementRef, React.ComponentPropsWithoutRef >(({ className, ...props }, forwardedRef) => { return ( ); }); SheetOverlay.displayName = "SheetOverlay"; const SheetContent = React.forwardRef< React.ElementRef, React.ComponentPropsWithoutRef >(({ className, ...props }, forwardedRef) => { return ( ); }); SheetContent.displayName = "SheetContent"; const SheetHeader = React.forwardRef>( ({ children, className, ...props }, ref) => { return (
{children}
); } ); SheetHeader.displayName = "Sheet.Header"; const SheetTitle = React.forwardRef< React.ElementRef, React.ComponentPropsWithoutRef >(({ className, ...props }, forwardedRef) => ( )); SheetTitle.displayName = "SheetTitle"; const SheetBody = React.forwardRef>( ({ className, ...props }, ref) => { return
; } ); SheetBody.displayName = "Sheet.Body"; const SheetDescription = React.forwardRef< React.ElementRef, React.ComponentPropsWithoutRef >(({ className, ...props }, forwardedRef) => { return ( ); }); SheetDescription.displayName = "SheetDescription"; const SheetFooter = ({ className, ...props }: React.HTMLAttributes) => { return (
); }; SheetFooter.displayName = "SheetFooter"; export { Sheet, SheetBody, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, };