Sha256: 9038525b53584fa77f36f4bd092a2c3029df24cc4394f5dac48f0266d92541fd
Contents?: true
Size: 726 Bytes
Versions: 2
Compression:
Stored size: 726 Bytes
Contents
import React from "react"; import { PopperProps, Reference as PopperReference } from "react-popper"; import { GlobalProps } from "../utilities/globalProps"; declare type PbPopoverProps = { aria?: { [key: string]: string; }; className?: string; closeOnClick?: "outside" | "inside" | "any"; data?: { [key: string]: string; }; id?: string; offset?: boolean; reference: PopperReference & any; show?: boolean; shouldClosePopover?: (arg0: boolean) => void; } & GlobalProps & Omit<PopperProps<any>, 'children'> & { children?: React.ReactChild[] | React.ReactChild; }; declare const PbReactPopover: (props: PbPopoverProps) => JSX.Element; export default PbReactPopover;
Version data entries
2 entries across 2 versions & 1 rubygems