UNPKG

nes-ui-react

Version:

A design system that paints the web in 8 bits.

10 lines (9 loc) 429 B
/// <reference types="react" /> import { IdProps } from "./interface/IdProps"; import { StyleProps } from "./interface/StyleProps"; export interface MenuProps extends StyleProps, React.PropsWithChildren<any>, IdProps { open?: boolean; modal?: boolean; onClose?: () => void; } export declare const Menu: ({ id, children, style, className, open, modal, onClose }: MenuProps) => import("react/jsx-runtime").JSX.Element;