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.

5 lines 239 B
/** * If the provided argument is a ref object, returns its `current` value. * Otherwise, returns the argument itself. */ export declare function resolveRef<T extends HTMLElement | null | undefined>(maybeRef: T | React.RefObject<T>): T;