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.

10 lines (9 loc) 377 B
import { ChildrenProp } from "../core/types.js"; import { PortalProps } from "./portal.types.js"; import { FC } from "react"; //#region src/portal/portal.d.ts /** Provided children are portaled to document.body or custom container. */ declare const Portal: FC<PortalProps & ChildrenProp>; //#endregion export { Portal, Portal as default }; //# sourceMappingURL=portal.d.ts.map