UNPKG

@ebay/ui-core-react

Version:

Skin components build off React

9 lines 268 B
import { ComponentProps, FC } from "react"; type TabPanelProps = ComponentProps<"div"> & { index?: number; parentId?: string; selected?: boolean; }; declare const TabPanel: FC<TabPanelProps>; export default TabPanel; //# sourceMappingURL=tab-panel.d.ts.map