UNPKG

@ark-ui/react

Version:

A collection of unstyled, accessible UI components for React, utilizing state machines for seamless interaction.

7 lines (6 loc) 295 B
import { PropsWithChildren, RefObject } from 'react'; export interface PortalProps { disabled?: boolean | undefined; container?: RefObject<HTMLElement | null> | undefined; } export declare const Portal: (props: PropsWithChildren<PortalProps>) => import("react/jsx-runtime").JSX.Element;