@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.
13 lines • 497 B
TypeScript
import { FloatingPortalProps } 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 function FloatingPortalLite(props: FloatingPortalLite.Props): import("react").ReactPortal | null;
export declare namespace FloatingPortalLite {
interface Props {
children?: React.ReactNode;
root?: FloatingPortalProps['root'];
}
}