UNPKG

@brizy/ui

Version:
11 lines (10 loc) 364 B
import { PropsWithChildren, ReactElement, ReactNode, ReactText } from "react"; export interface Props<T extends ReactText> { key: T; disabled?: boolean; title?: string; addonBefore?: ReactNode; addonAfter?: ReactNode; pro?: boolean; } export declare function MenuItem<T extends ReactText>(props: PropsWithChildren<Props<T>>): ReactElement;