UNPKG

@docsvision/webclient

Version:

Type definitions for DocsVision WebClient scripts and extensions.

23 lines (22 loc) 634 B
import React from "react"; /** Свойства для {@link PopoverBox} */ export interface IPopoverBoxProps { /** Содержимое PopoverBox */ children?: React.ReactNode; className?: string; attributes?: object; } /** * Представляет полотно {@link Popover} * * Пример использования: * * <Popover isOpen={this.state.popoverOpen} > * <PopoverBox> * <div>Содержимое</div> * </PopoverBox> * </Popover> * * См. также {@link Popover} */ export declare const PopoverBox: (props: IPopoverBoxProps) => JSX.Element;