UNPKG

blockiesui

Version:

A UI library for Blockies

30 lines (27 loc) 2.28 kB
import * as react_jsx_runtime from 'react/jsx-runtime'; import * as class_variance_authority_dist_types from 'class-variance-authority/dist/types'; import * as React from 'react'; import * as SheetPrimitive from '@radix-ui/react-dialog'; import { VariantProps } from 'class-variance-authority'; declare const Sheet: React.FC<SheetPrimitive.DialogProps>; declare const SheetTrigger: React.ForwardRefExoticComponent<SheetPrimitive.DialogTriggerProps & React.RefAttributes<HTMLButtonElement>>; declare const SheetClose: React.ForwardRefExoticComponent<SheetPrimitive.DialogCloseProps & React.RefAttributes<HTMLButtonElement>>; declare const SheetPortal: React.FC<SheetPrimitive.DialogPortalProps>; declare const SheetOverlay: React.ForwardRefExoticComponent<Omit<SheetPrimitive.DialogOverlayProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<React.Ref<React.ForwardRefExoticComponent<SheetPrimitive.DialogOverlayProps & React.RefAttributes<HTMLDivElement>>>>>; declare const sheetVariants: (props?: ({ side?: "top" | "bottom" | "left" | "right" | null | undefined; } & class_variance_authority_dist_types.ClassProp) | undefined) => string; interface SheetContentProps extends React.ComponentPropsWithoutRef<typeof SheetPrimitive.Content>, VariantProps<typeof sheetVariants> { } declare const SheetContent: React.ForwardRefExoticComponent<Omit<SheetContentProps, "ref"> & React.RefAttributes<HTMLDivElement>>; declare const SheetHeader: { ({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element; displayName: string; }; declare const SheetFooter: { ({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): 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, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger };