UNPKG

nice-ui

Version:

React design system, components, and utilities

12 lines (11 loc) 283 B
import * as React from 'react'; export interface Props { active?: boolean; activeChild?: boolean; to?: string; hasMore?: boolean; children: React.ReactNode; onClick?: () => void; onMouseDown?: () => void; } export declare const MenuItem: React.FC<Props>;