UNPKG

react-widgets-up

Version:

An à la carte set of polished, extensible, and accessible inputs built for React

26 lines 996 B
import * as React from 'react'; import { SlideDownTransitionProps } from './SlideDownTransition'; export interface StaticContainerProps { children: React.ReactNode; shouldUpdate?: boolean; } export declare const StaticContainer: React.MemoExoticComponent<({ children }: StaticContainerProps) => React.ReactElement<unknown, string | React.JSXElementConstructor<any>>>; export interface PopupProps { className?: string; open?: boolean; dropUp?: boolean; onEnter?: () => void; onEntering?: () => void; onEntered?: () => void; onExit?: () => void; onExited?: () => void; onExiting?: () => void; transition?: React.ComponentType<SlideDownTransitionProps>; role?: string; id?: string; children: React.ReactNode; [prop: string]: unknown; } declare const Popup: React.ForwardRefExoticComponent<Omit<PopupProps, "ref"> & React.RefAttributes<HTMLDivElement>>; export default Popup; //# sourceMappingURL=Popup.d.ts.map