# Advanced Text Area ## Example ```svelte
``` ## Documentation ## Usage ```svelte ``` ## API Reference ### AdvancedTextArea A textarea with optional additional content area and action buttons, suitable for composing posts or messages. | Prop | Type | Default | Description | |------|------|---------|-------------| | value | `string` | `-` | The current text value. (bindable) | | placeholder | `string` | `'Write something here...'` | Placeholder text. | | rows | `number` | `3` | The number of visible text rows. | | additionalContent | `Snippet` | `-` | Additional content to display below the textarea (e.g. media previews). | | actionButtons | `Snippet` | `-` | Action buttons displayed in the bottom-left area (e.g. attach, emoji). | | submitButton | `Snippet | string | null` | `'Post'` | The submit button. Can be a string label, a custom snippet, or null to hide. |