## ToggleButton `ToggleButton` components are used to expand and collapse content with a toggle. | Param | Type | Default | Description | | --- | --- | --- | --- | | toggleAttr | String | | The attribute upon which to toggle. | | attrTarget | Object | | The target upon which the event handler should be added. | | [openLabel] | String | Hide | options - The message to display when the toggle is open. | | [closedLabel] | String | More | options - The message to display when the toggle is closed. | **Example** ```js {{#if showOptions}}

I will be toggled!

{{/if}} ``` **See** - [Uses of ToggleButton](https://github.com/hashicorp/vault/search?l=Handlebars&q=ToggleButton) - [ToggleButton Source Code](https://github.com/hashicorp/vault/blob/master/ui/app/components/toggle-button.js) ---