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

\alias{dlcPanel}

\title{Panel component}

\description{
A simple and convenient panel widget class.   {@link https://jupyterlab.github.io/lumino/widgets/classes/panel.html}  This class is suitable to directly display a collection of dash widgets. @hideconstructor  @example //Python: import dash_lumino_components as dlc import dash_html_components as html  panelA = dlc.Panel(     id="panelA",     children=html.Div("Content"),     label="Test",     icon="fa fa-plus")  panelB = dlc.Panel(     [         html.Div("Content")     ],     id="panelB",     label="Test",     icon="fa fa-plus")
}

\usage{
dlcPanel(children=NULL, id=NULL, addToDom=NULL, icon=NULL, label=NULL)
}

\arguments{
\item{children}{A list of or a singular dash component, string or number. The widgets
@type {Object | Array<Object>}}

\item{id}{Character. ID of the widget
@type {string}}

\item{addToDom}{Logical. bool if the object has to be added to the dom directly
@type {boolean}}

\item{icon}{Character. The icon of the panel (a cass class name)
@type {string}}

\item{label}{Character. The label of the panel
@type {string}}
}

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

