A semantic action row for the controls beneath a message composer, reply field, or note editor.
Place Toolbar inside Textarea to create one composer surface. Give the Toolbar an accessible label that describes its actions.
Compose the action row with the controls your workflow needs.
import { Textarea } from '@sivir-ui/svelte/components/textarea'; import { Toolbar } from '@sivir-ui/svelte/components/toolbar'; <Textarea autoresize aria-label="New message"> <Toolbar aria-label="Message actions"> <!-- Icon actions and send control --> </Toolbar> </Textarea>