@moderntribe/wme-ui
Version:
Components and hooks to build the best UX/UI admin wizards
12 lines • 337 B
TypeScript
import type React from 'react';
import type { ReactNode } from 'react';
interface WmeMenuItemProps {
value: string;
key: number | string;
icon?: ReactNode;
id?: string;
children: string | ReactNode;
}
declare const MenuItem: React.FC<WmeMenuItemProps>;
export default MenuItem;
//# sourceMappingURL=menu-item.d.ts.map