Variable: DialogPortal
@arolariu/components / DialogPortal
Variable: DialogPortal
constDialogPortal:ForwardRefExoticComponent<Omit<DialogPortalProps,"ref"> &RefAttributes<HTMLDivElement>> =BaseDialog.Portal
Defined in: components/ui/dialog.tsx:146
Portals dialog descendants outside the local DOM hierarchy.
Remarks
- Renders no DOM element by default and portals descendants into the document body
- Built on Base UI Dialog
- Does not expose a
renderprop because it only controls mounting context - Styling via CSS Modules with
--ac-*custom properties through descendant components
Example
<DialogPortal>
<DialogOverlay />
<DialogContent />
</DialogPortal>
See
// was this page useful?