@wulperstudio/cms
Version:
Wulper Studio Library Components CMS
11 lines (10 loc) • 345 B
TypeScript
import { TabProps } from '@mui/material';
export interface StyleTabsPropsModel {
borderRadius?: number;
backgroundColor?: string;
padding?: string;
iconSeparation?: string | number;
boxShadow?: string;
}
export interface CustomTabModel extends Omit<TabProps, 'children' | 'LinkComponent' | 'action'>, StyleTabsPropsModel {
}