@theaimegroup/aime-component-library
Version:
AIME Component Library
16 lines (15 loc) • 427 B
TypeScript
interface TabsProps {
fitWidth?: boolean;
tabsVariant?: string;
tabPanels: any[];
tabNames: string[];
tabListBgColor?: string;
tabsBgColor?: string;
tabSpacing?: string;
tabsTextColor?: string;
selectedTabBgColor?: string;
selectedTabTextColor?: string;
tabPanelBgColor?: string;
}
declare const TabLayout: (props: TabsProps) => JSX.Element;
export default TabLayout;