mui-simple
Version:
Override mui components to simplify usage
25 lines • 1.11 kB
TypeScript
import type { ComponentType } from 'react';
import type { TabsProps, BoxProps } from '@mui/material';
interface TabsStyledProps {
customColor?: string;
fillActiveTab?: boolean;
}
type TabsStyledPropsType = TabsProps & TabsStyledProps & any;
export declare const Tabs: ComponentType<TabsStyledPropsType>;
export declare const Tab: import("@mui/material").ExtendButtonBase<import("@mui/material").TabTypeMap<{}, "div">>;
interface TabPanelStyledProps {
iconPosition?: string;
disableRipple?: boolean;
}
type TabPanelStyledPropsType = BoxProps & TabPanelStyledProps & any;
export declare const TabPanel: ComponentType<TabPanelStyledPropsType>;
export declare const Box: import("@mui/types").OverridableComponent<import("@mui/system").BoxTypeMap<{}, "div", import("@mui/material").Theme>>;
interface TabWrapperProps {
reverse?: boolean;
orientation?: 'vertical' | 'horizontal';
verticalMaxFixedHeight?: string;
}
type TabWrapperType = BoxProps & TabWrapperProps & any;
export declare const TabWrapper: ComponentType<TabWrapperType>;
export {};
//# sourceMappingURL=Tabs.styled.d.ts.map