@onesy/ui-react
Version:
UI for React
16 lines (15 loc) • 363 B
TypeScript
import React from 'react';
import { IMenu } from '../Menu/Menu';
export declare type IInfo = 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;