@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.
15 lines (14 loc) • 346 B
TypeScript
import { PolymorphicComponent } from '../utils';
import { PopupTypeMap } from './Popup.types';
/**
*
* Demos:
*
* - [Popup](https://mui.com/base-ui/react-popup/)
*
* API:
*
* - [Popup API](https://mui.com/base-ui/react-popup/components-api/#popup)
*/
declare const Popup: PolymorphicComponent<PopupTypeMap<{}, "div">>;
export { Popup };