UNPKG

reablocks

Version:
15 lines (13 loc) 358 B
import { TabsTheme } from './TabsTheme'; import { FC, PropsWithChildren } from 'react'; export interface TabPanelProps extends PropsWithChildren { /** * The class name to be added to the tab panel. */ className?: string; /** * Theme for the Tabs. */ theme?: TabsTheme; } export declare const TabPanel: FC<TabPanelProps>;