> For the complete documentation index, see [llms.txt](https://tigriweb.gitbook.io/components/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://tigriweb.gitbook.io/components/attributes/toolbargroup.md).

# ToolbarGroup

[TwebToolbarGroup](https://github.com/tigriweb/components/blob/master/attributes/TwebToolbarGroup.js)

<div align="left" data-full-width="false"><figure><img src="/files/y227KzOrSKqwhYx8sbKO" alt=""><figcaption></figcaption></figure></div>

<details>

<summary>{ label, icon*, name*, onClick, attributes*, setAttributes* }</summary>

```jsx
/**
 * @param {string} [label] - Component label.
 * @param {JSX.Element} icon - Component icon.
 * @param {string} name - Attribute name.
 * @param {function} [onClick] - Function called when the button is clicked.
 * @param {object} attributes - Object containing block attributes.
 * @param {function} setAttributes - Function to set new block attribute values.
 */
```

</details>

{% code title="block.json" overflow="wrap" %}

```json
"tabsAlign": {
	"type": "string",
	"default": "left"
},
```

{% endcode %}

{% code title="index.js" overflow="wrap" %}

```jsx
import {
	TwebSVG,
} from '@tigriweb/components/primitives';

import {
	TwebToolbarGroup,
} from '@tigriweb/components/attributes';
```

{% endcode %}

{% code title="index.js | edit()" %}

```jsx
<TwebToolbarGroup
	name="tabsAlign"
	label={ __('Align tabs', 'your-theme-name') }
	groupData={ [{
		value: 'left',
		title: __('Align tabs left', 'your-theme-name'),
		icon: <TwebSVG icon="layout-align-left" />,
	}, {
		value: 'center',
		title: __('Align tabs center', 'your-theme-name'),
		icon: <TwebSVG icon="layout-align-middle" />,
	}, {
		value: 'right',
		title: __('Align tabs right', 'your-theme-name'),
		icon: <TwebSVG icon="layout-align-right" />,
	}] }
	{ ...{ attributes, setAttributes } }
/>
```

{% endcode %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://tigriweb.gitbook.io/components/attributes/toolbargroup.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
