UNPKG

@ark-ui/react

Version:

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

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