UNPKG

@dodobrat/react-ui-kit

Version:
13 lines (12 loc) 525 B
/// <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 {};