% Auto-generated: do not edit by hand
\name{dlcMenu}

\alias{dlcMenu}

\title{Menu component}

\description{
A widget which displays items as a canonical menu.   {@link https://jupyterlab.github.io/lumino/widgets/classes/menu.html} @hideconstructor  @example //Python: import dash import dash_lumino_components as dlc   menu = dlc.Menu([     dlc.Command(id="com:openwidget", label="Open", icon="fa fa-plus"),     dlc.Separator(),     dlc.Menu([         dlc.Command(id="com:closeall", label="Close All", icon="fa fa-minus"),         dlc.Command(id="com:closeone",                     label="Close One", icon="fa fa-minus"),     ], id="extraMenu", title="Extra") ], id="openMenu", title="Widgets")
}

\usage{
dlcMenu(children=NULL, id=NULL, iconClass=NULL, title=NULL)
}

\arguments{
\item{children}{A list of or a singular dash component, string or number. An array of the menu items (dlc.Command | dlc.Menu | dlc.Separator)
@type {Array<Command, Menu, Separator>}}

\item{id}{Character. The ID used to identify this component in Dash callbacks.
@type {string}}

\item{iconClass}{Character. The icon class of the menu
@type {string}}

\item{title}{Character. The title of the menu
@type {string}}
}

\value{named list of JSON elements corresponding to React.js properties and their values}

