UNPKG

react-widgets

Version:

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

20 lines 640 B
import React from 'react'; import { TransitionProps } from 'react-transition-group/Transition'; export interface PopupProps { className?: string; open?: boolean; dropUp?: boolean; onEnter?: () => void; onEntering?: () => void; onEntered?: () => void; onExit?: () => void; onExited?: () => void; onExiting?: () => void; transition?: React.ComponentType<TransitionProps>; role?: string; id?: string; children: React.ReactNode; } declare const Popup: React.ForwardRefExoticComponent<PopupProps & React.RefAttributes<HTMLDivElement>>; export default Popup; //# sourceMappingURL=Popup.d.ts.map