tm-reuseable-components
Version:
This is a reuseable components lib made for TextMercato
22 lines (21 loc) • 716 B
TypeScript
import { ReactNode } from "react";
export interface TabsProps {
allowScrollButtonMobile?: boolean;
ariaLabel?: string;
ariaLabeledBy?: string;
centered?: boolean;
children?: ReactNode;
classes?: object;
indicatorColor?: 'primary' | 'secondary';
onChange?: ((event: React.SyntheticEvent<Element, Event>, value: any) => void) | undefined;
orientation?: 'horizontal' | 'vertical';
scrollButtons?: 'auto' | false | true;
selectionFollowsFocus?: boolean;
value?: any;
textColor?: 'inherit' | 'primary' | 'secondary';
variant?: 'fullWidth' | 'scrollable' | 'standard';
visibleScrollbar?: boolean;
tabLabel?: any;
tabList?: any;
className?: string;
}