fui-fancyui
Version:
FancyUI Libary
14 lines (13 loc) • 507 B
TypeScript
import { TLayer } from '../../../types/TLayer';
import { TUiColorsNotTransparent } from '../../../types/TUiColorsNotTransparent';
import { CSSProp } from 'styled-components';
export type TMenu = {
children?: React.ReactNode;
themeType?: TUiColorsNotTransparent;
layer?: TLayer;
outlined?: boolean;
outlinedBackgroundStrength?: number;
outlinedRemoveBorder?: boolean;
externalStyle?: CSSProp;
};
export type TMenuWithHTMLAttributes = TMenu & React.HTMLAttributes<HTMLDivElement>;