razor-shared-library
Version:
9 lines (8 loc) • 336 B
TypeScript
import { ReactElement } from 'react';
import { TabsProps } from '@mui/material/Tabs';
import { TabItem } from '../../../../../../../../src/components/navigation/tab/types';
interface Props {
tabItem: TabItem[];
}
export declare function TabCustom({ tabItem, value, onChange, ...props }: Props & TabsProps): ReactElement;
export {};