# Toolbar Component ## Basic example ```html ``` You should see result similar to the following one: ![](docs/adf-toolbar-01.png) ## Properties | Name | Type | Default | Description | | --- | --- | --- | --- | | title | string | | Toolbar title | | color | string | | Toolbar color, can be changed to empty value (default), `primary`, `accent` or `warn`. | ## Custom title You can use any HTML layout or Angular component as a content of the Title section by using the special `` component instead of the "title" attribute: ```html ... ``` The toolbar should now look similar to the following: ![](docs/adf-toolbar-02.png) ## Dropdown menu You can use the following example to create a dropdown menu: ```html ... ``` The code above is based on the `` component from the `@angular/material` library. You can use any custom menu component as well. ![](docs/adf-toolbar-03.png) Once you click the menu button you should see the following menu items as defined earlier: ![](docs/adf-toolbar-04.png) ## Custom color Besides the default color you can use 'primary', 'accent', or 'warn' values: Depending on the overall application theme the colors of the toolbar should change. For example: ![](docs/adf-toolbar-05.png) ![](docs/adf-toolbar-06.png) ![](docs/adf-toolbar-07.png)