Skip to main content

css

Description

Optional. Controls the CSS class for the top container of the toolbar

In React, the Toolbar applies the value of the css prop to the root element's className.

Usage

css?: string;

Example

Defining CSS class:

<Toolbar css="somebar" />
.somebar {
background-color: #f0f0f0;
}