@ebay/ui-core-react
Version:
Skin components build off React
13 lines • 410 B
TypeScript
import { ComponentProps } from "react";
export type Activation = "auto" | "manual";
export type Size = "medium" | "large";
export type OnSelectProps = {
selectedIndex: number;
};
export type TabsProps = Omit<ComponentProps<"div">, "onSelect"> & {
selectedIndex?: number;
size?: Size;
activation?: Activation;
onSelect?: (props: OnSelectProps) => void;
};
//# sourceMappingURL=types.d.ts.map