UNPKG

@shinyongjun/react-datepicker

Version:
12 lines (11 loc) 441 B
import { ReactNode, RefObject } from 'react'; import { TIsVisible } from '../../types/props'; interface IProps { isVisible: TIsVisible; setIsVisible: (isVisible: TIsVisible) => void; withPortal: boolean; children: ReactNode; inputRef: RefObject<HTMLDivElement>; } declare function Layer({ isVisible, setIsVisible, withPortal, children, inputRef, }: IProps): import("react/jsx-runtime").JSX.Element; export default Layer;