13 lines
357 B
TypeScript
13 lines
357 B
TypeScript
import * as _chakra_ui_system from '@chakra-ui/system';
|
|
import { HTMLChakraProps } from '@chakra-ui/system';
|
|
|
|
interface TabPanelProps extends HTMLChakraProps<"div"> {
|
|
}
|
|
/**
|
|
* TabPanel
|
|
* Used to render the content for a specific tab.
|
|
*/
|
|
declare const TabPanel: _chakra_ui_system.ComponentWithAs<"div", TabPanelProps>;
|
|
|
|
export { TabPanel, TabPanelProps };
|