UNPKG

@veracity/vui

Version:

Veracity UI is a React component library crafted for use within Veracity applications and pages. Based on Styled Components and @xstyled.

15 lines (14 loc) 534 B
import { SystemProps } from "../system/system.js"; import { VuiComponent } from "../core/vui.js"; import { BoxProps } from "../box/box.types.js"; import { PopoverProps } from "./popover.types.js"; //#region src/popover/popover.d.ts declare function Popover(props: PopoverProps): import("react").JSX.Element; declare namespace Popover { var Content: VuiComponent<"div", BoxProps>; var Trigger: VuiComponent<"button", SystemProps>; var displayName: string; } //#endregion export { Popover }; //# sourceMappingURL=popover.d.ts.map