# AppenderButton

[TwebBlockAppenderButton](https://github.com/tigriweb/components/blob/master/controls/TwebBlockAppenderButton.js)

<details>

<summary>{ className, label, labelText, clientId* }</summary>

```jsx
/**
 * @param {string} className - CSS class name for styling the element.
 * @param {string} label - Title label for the button.
 * @param {string} labelText - Text label for the button.
 * @param {string} clientId - The clientId from edit({ clientId }).
 */
```

</details>

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

```jsx
import {
	TwebBlockAppenderButton,
} from '@tigriweb/components/controls';
```

{% endcode %}

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

```jsx
<TwebBlockAppenderButton
	className="custom-class"
	label={ __('Add Slide Item', 'tweb') }
	clientId={ clientId }
/>
```

{% endcode %}
