@veracity/vui
Version:
Veracity UI is a React component library crafted for use within Veracity applications and pages. Based on Styled Components and @xstyled.
14 lines (13 loc) • 496 B
TypeScript
import { PopoverProps } from "./popover.types.js";
import { PopoverContent } from "./popoverContent.js";
import { PopoverTrigger } from "./popoverTrigger.js";
//#region src/popover/popover.d.ts
declare function Popover(props: PopoverProps): import("react").JSX.Element;
declare namespace Popover {
export { PopoverContent as Content };
export { PopoverTrigger as Trigger };
export var displayName: string;
}
//#endregion
export { Popover as default };
//# sourceMappingURL=popover.d.ts.map