UNPKG

@ebay/ui-core-react

Version:

Skin components build off React

12 lines 346 B
import { ComponentProps, FC, RefCallback } from "react"; type TabProps = ComponentProps<"div"> & { index?: number; parentId?: string; selected?: boolean; disabled?: boolean; focused?: boolean; refCallback?: RefCallback<HTMLElement>; }; declare const Tab: FC<TabProps>; export default Tab; //# sourceMappingURL=tab.d.ts.map