UNPKG

reablocks

Version:
14 lines (13 loc) 357 B
import { FC, PropsWithChildren } from 'react'; import { TabsTheme } from './TabsTheme'; 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>;