UNPKG

@mui/base

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.

16 lines (15 loc) 458 B
import { PolymorphicComponent } from '../utils'; import { PopperTypeMap } from './Popper.types'; /** * Poppers rely on the 3rd party library [Popper.js](https://popper.js.org/docs/v2/) for positioning. * * Demos: * * - [Popper](https://mui.com/base-ui/react-popper/) * * API: * * - [Popper API](https://mui.com/base-ui/react-popper/components-api/#popper) */ declare const Popper: PolymorphicComponent<PopperTypeMap<{}, "div">>; export { Popper };