---
Title: Toolbar Component
Added: v2.0.0
Status: Active
Last reviewed: 2018-06-08
---
# [Toolbar Component](../../../lib/core/src/lib/toolbar/toolbar.component.ts "Defined in toolbar.component.ts")
Simple container for headers, titles, actions and breadcrumbs.

## Contents
- [Basic Usage](#basic-usage)
- [Transclusions](#transclusions)
- [Class members](#class-members)
- [Properties](#properties)
- [Details](#details)
- [Dropdown menu](#dropdown-menu)
- [See also](#see-also)
## Basic Usage
```html
```
### [Transclusions](../../user-guide/transclusion.md)
You can set the title content using an `` element (although
you can also set a simple textual title with the `title` attribute).
All other content in the toolbar is free-form but you can use one or more
`` elements between your own elements to add a visual
separator. Also, any content following a `
` element with the CSS class
`adf-toolbar--spacer` will be pushed across to the right-hand side of the
toolbar:
```html
```
For example, the image below shows a toolbar with a
[Breadcrumb component](../../content-services/components/breadcrumb.component.md) title, and then some buttons
pushed to the right by a spacer:

## Class members
### Properties
| Name | Type | Default value | Description |
| ---- | ---- | ------------- | ----------- |
| title | `string` | "" | Toolbar title. |
## Details
### Dropdown menu
The following example shows how to create a dropdown menu. The code is based
on the `` component from the `@angular/material` library
but you could also use your own custom menu components:
```html
...
```

With the menu set up like this, you would see the following menu items as defined earlier
when you click the menu button:

## See also
- [Toolbar Divider component](toolbar-divider.component.md)
- [Toolbar Title component](toolbar-title.component.md)