UNPKG

@amaui/ui-react

Version:
16 lines (15 loc) 363 B
import React from 'react'; import { IMenu } from '../Menu/Menu'; export interface IInfo extends IMenu { name?: string; title?: string; render?: () => any; Icon?: any; IconProps?: any; IconButtonProps?: any; TitleProps?: any; ContainerProps?: any; TooltipProps?: any; } declare const Info: React.FC<IInfo>; export default Info;