UNPKG

react-elegant-ui

Version:

Elegant UI components, made by BEM best practices for react

9 lines (8 loc) 201 B
import { FC } from 'react'; import './Menu-Group.css'; export interface IMenuGroup { title?: string; className?: string; hidden?: boolean; } export declare const MenuGroup: FC<IMenuGroup>;