fui-fancyui
Version:
FancyUI Libary
14 lines (13 loc) • 635 B
TypeScript
import { TTabSwitchWithHTMLAtts } from '../../molecules/TabSwitch/TTabSwitch.model';
import { TLayer } from '../../../types/TLayer';
import { TSpacings } from '../../../types/TSpacings';
import { TUiColorsMain } from '../../../types/TUiColorsMain';
import { TUiColorsMainAndAccent } from '../../../types/TUiColorsMainAndAccent';
export type TFancyTabSwitch = {
label?: string;
themeType?: TUiColorsMain | 'transparent';
layer?: TLayer;
spacingToEdge?: TSpacings;
activeTextColor?: TUiColorsMainAndAccent;
};
export type FancyTabSwitchWithTabSwitchAtts = TFancyTabSwitch & Omit<TTabSwitchWithHTMLAtts, 'themeType'>;