UNPKG

@ntragas/pouncejstest

Version:

A collection of UI components from Panther labs

16 lines (15 loc) 594 B
import React, { ReactNode } from 'react'; export interface PopoverContentProps { /** * The position to expand the popover * * @default left */ alignment?: 'bottom-left' | 'bottom-center' | 'bottom-right' | 'top-left' | 'top-center' | 'top-right' | 'left-bottom' | 'left-center' | 'left-top' | 'right-bottom' | 'right-center' | 'right-top'; /** * @ignore */ children: ReactNode; } declare const _default: React.MemoExoticComponent<React.ForwardRefExoticComponent<PopoverContentProps & React.RefAttributes<HTMLDivElement>>>; export default _default;