@mui/base
Version:
A library of headless ('unstyled') React UI components and low-level hooks.
15 lines (14 loc) • 363 B
TypeScript
import { PolymorphicComponent } from '../utils';
import { TabPanelTypeMap } from './TabPanel.types';
/**
*
* Demos:
*
* - [Tabs](https://mui.com/base/react-tabs/)
*
* API:
*
* - [TabPanel API](https://mui.com/base/react-tabs/components-api/#tab-panel)
*/
declare const TabPanel: PolymorphicComponent<TabPanelTypeMap<{}, "div">>;
export default TabPanel;