UNPKG

spok-ui

Version:

UI Library for SPOK system

11 lines (10 loc) 301 B
import React, { FC } from 'react'; import { PopperPosition } from '../../types/global'; interface Props { position?: PopperPosition; children: React.ReactChild; anchor?: HTMLElement | null; handleClose?: () => void; } export declare const SimplePopper: FC<Props>; export {};