fomantic-ui-react
Version:
Fomantic-UI React -- A React Component Library.
12 lines (11 loc) • 506 B
TypeScript
/// <reference types="react" />
import { MenuProps } from './type';
declare const Menu: {
({ as, className, text, children, ...props }: MenuProps): import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
displayName: string;
Item: {
({ as, className, children, ...props }: import("./type").MenuItemProps): import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
displayName: string;
};
};
export default Menu;