UNPKG

@rajkrajpj/cultivate-ui-library

Version:

A modern, type-safe, accessible React component library for fintech investor forms. Build complete investor forms in minutes with zero configuration, supporting multiple regulations (RegA+, RegD, RegCF) and investor types.

26 lines (25 loc) 1.78 kB
import * as DialogPrimitive from "@radix-ui/react-dialog"; declare const Dialog: import('react').FC<DialogPrimitive.DialogProps>; declare const DialogTrigger: import('react').ForwardRefExoticComponent<DialogPrimitive.DialogTriggerProps & import('react').RefAttributes<HTMLButtonElement>>; export interface DialogPortalProps extends DialogPrimitive.DialogPortalProps { className?: string; } export interface DialogOverlayProps extends React.ComponentPropsWithoutRef<typeof DialogPrimitive.Overlay> { } export interface DialogContentProps extends React.ComponentPropsWithoutRef<typeof DialogPrimitive.Content> { closeOnOverlayClick?: boolean; } declare const DialogContent: ({ className, children, closeOnOverlayClick, ...props }: DialogContentProps) => import("react/jsx-runtime").JSX.Element; export interface DialogHeaderProps extends React.HTMLAttributes<HTMLDivElement> { } declare const DialogHeader: ({ className, ...props }: DialogHeaderProps) => import("react/jsx-runtime").JSX.Element; export interface DialogFooterProps extends React.HTMLAttributes<HTMLDivElement> { } declare const DialogFooter: ({ className, ...props }: DialogFooterProps) => import("react/jsx-runtime").JSX.Element; export interface DialogTitleProps extends React.ComponentPropsWithoutRef<typeof DialogPrimitive.Title> { } declare const DialogTitle: ({ className, ...props }: DialogTitleProps) => import("react/jsx-runtime").JSX.Element; export interface DialogDescriptionProps extends React.ComponentPropsWithoutRef<typeof DialogPrimitive.Description> { } declare const DialogDescription: ({ className, ...props }: DialogDescriptionProps) => import("react/jsx-runtime").JSX.Element; export { Dialog, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, DialogTrigger, };