UNPKG

@ebay/ui-core-react

Version:

Skin components build off React

10 lines 330 B
import { ComponentProps, FC } from "react"; export type Size = "regular" | "large"; type FakeTabsProps = ComponentProps<"div"> & { selectedIndex?: number; size?: Size; tabMatchesCurrentUrl?: boolean; }; declare const EbayFakeTabs: FC<FakeTabsProps>; export default EbayFakeTabs; //# sourceMappingURL=fake-tabs.d.ts.map