17 lines
459 B
TypeScript
17 lines
459 B
TypeScript
import * as _chakra_ui_system from '@chakra-ui/system';
|
|
import { HTMLChakraProps } from '@chakra-ui/system';
|
|
|
|
interface TabPanelsProps extends HTMLChakraProps<"div"> {
|
|
}
|
|
/**
|
|
* TabPanel
|
|
*
|
|
* Used to manage the rendering of multiple tab panels. It uses
|
|
* `cloneElement` to hide/show tab panels.
|
|
*
|
|
* It renders a `div` by default.
|
|
*/
|
|
declare const TabPanels: _chakra_ui_system.ComponentWithAs<"div", TabPanelsProps>;
|
|
|
|
export { TabPanels, TabPanelsProps };
|