@dodobrat/react-ui-kit
Version:
Simple React Component Library
13 lines (12 loc) • 525 B
TypeScript
/// <reference types="react" />
import { AllEssentialCustomizationProps, CnCh, EssentialLoadingProps } from "../../helpers/global.types";
declare type ExtraTabsProps = CnCh & AllEssentialCustomizationProps & EssentialLoadingProps;
export interface TabsProps extends ExtraTabsProps {
contentClassName?: string;
withRipple?: boolean;
onTabPointerDown?: React.PointerEventHandler;
activeTab?: number;
onTabSelect?: (tab: number) => void;
orientation?: "horizontal" | "vertical";
}
export {};