@rabahzeineddine/material-ui
Version:
Material ui custom components
22 lines (21 loc) • 468 B
TypeScript
import React from 'react';
export declare type TabsProps = {
children: React.ReactNode;
fullWidth?: boolean;
};
export declare type TabProps = {
label: string;
component: React.ReactNode;
disabled?: boolean;
hideOnSwitch?: boolean;
componentProps?: {
[key: string]: any;
};
};
export declare type TabPanelProps = {
children?: React.ReactNode;
dir?: string;
index: any;
value: any;
hideOnSwitch?: boolean;
};