fui-fancyui
Version:
FancyUI Libary
18 lines (17 loc) • 692 B
TypeScript
import { TFancyBottomBarIcon } from '../FancyBottomBarIcon';
import { TLayer } from '../../../types/TLayer';
import { TUiColorsNotTransparent } from '../../../types/TUiColorsNotTransparent';
import { CSSProp } from 'styled-components';
export type TFancyHandyNav = {
items?: TFancyBottomBarIcon[];
isVisible?: boolean;
wichIndexIsActive?: string;
themeType?: TUiColorsNotTransparent;
themeTypeSwitchList?: TUiColorsNotTransparent;
layer?: TLayer;
switchListLayer?: TLayer;
outlined?: boolean;
outlinedBackgroundStrength?: number;
externalStyle?: CSSProp;
};
export type TFancyHandyNavWithHTMLAttrs = TFancyHandyNav & React.HTMLAttributes<HTMLElement>;