UNPKG

@base-ui-components/react

Version:

Base UI is a library of headless ('unstyled') React components and low-level hooks. You gain complete control over your app's CSS and accessibility features.

12 lines 604 B
import * as React from 'react'; import { type FloatingPortal } from "../floating-ui-react/index.js"; /** * `FloatingPortal` includes tabbable logic handling for focus management. * For components that don't need tabbable logic, use `FloatingPortalLite`. * @internal */ export declare const FloatingPortalLite: React.ForwardRefExoticComponent<FloatingPortalLite.Props<any> & React.RefAttributes<HTMLDivElement>>; export interface FloatingPortalLiteProps<State> extends FloatingPortal.Props<State> {} export declare namespace FloatingPortalLite { type Props<State> = FloatingPortalLiteProps<State>; }