UNPKG

mt-flowbite-react

Version:

Official React components built for Flowbite and Tailwind CSS

24 lines (23 loc) 1.72 kB
import * as SheetPrimitive from '@radix-ui/react-dialog'; import { VariantProps } from 'class-variance-authority'; import * as React from 'react'; declare const Sheet: React.FC<SheetPrimitive.DialogProps>; declare const SheetTrigger: React.ForwardRefExoticComponent<SheetPrimitive.DialogTriggerProps & React.RefAttributes<HTMLButtonElement>>; declare const sheetVariants: (props?: ({ position?: "bottom" | "left" | "right" | "top" | null | undefined; size?: "content" | "sm" | "lg" | "xl" | "default" | "full" | null | undefined; } & import("class-variance-authority/dist/types").ClassProp) | undefined) => string; export interface DialogContentProps extends React.ComponentPropsWithoutRef<typeof SheetPrimitive.Content>, VariantProps<typeof sheetVariants> { } declare const SheetContent: React.ForwardRefExoticComponent<DialogContentProps & React.RefAttributes<HTMLDivElement>>; declare const SheetHeader: { ({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): import("react/jsx-runtime").JSX.Element; displayName: string; }; declare const SheetFooter: { ({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): import("react/jsx-runtime").JSX.Element; displayName: string; }; declare const SheetTitle: React.ForwardRefExoticComponent<Omit<SheetPrimitive.DialogTitleProps & React.RefAttributes<HTMLHeadingElement>, "ref"> & React.RefAttributes<HTMLHeadingElement>>; declare const SheetDescription: React.ForwardRefExoticComponent<Omit<SheetPrimitive.DialogDescriptionProps & React.RefAttributes<HTMLParagraphElement>, "ref"> & React.RefAttributes<HTMLParagraphElement>>; export { Sheet, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger };