Toolbar
Horizontal button group for actions
Accessibility
- Use concise, descriptive labels so navigation items are understandable when announced out of context.
- Preserve the expected keyboard model and expose current or selected state where relevant.
Styled quick start
Copy this entrypoint first. It includes the imports required to get the component on screen.
svelte
<script lang="ts">
import '@dryui/ui/themes/default.css';
import '@dryui/ui/themes/dark.css';
import { Toolbar } from '@dryui/ui';
</script>
<Toolbar.Root>
<Toolbar.Button>...</Toolbar.Button>
<Toolbar.Separator>...</Toolbar.Separator>
<Toolbar.Link>...</Toolbar.Link>
</Toolbar.Root> Import options
Root package
ts
import { Toolbar } from '@dryui/ui' Per-component subpath
ts
import { Toolbar } from '@dryui/ui/toolbar' API
Props, CSS variables, and the public data attributes you can target when styling.
| Prop | Type | Description | Default | Required | Bindable |
|---|---|---|---|---|---|
Toolbar.Root | |||||
| orientation | horizontalvertical | Horizontal or vertical layout direction. | 'horizontal' | — | — |
| children | Snippet | Content rendered inside the component. | — | ✓ | — |
Toolbar.Button | |||||
| disabled | boolean | Prevents interaction and applies disabled styling. | false | — | — |
| children | Snippet | Content rendered inside the component. | — | ✓ | — |
Toolbar.Separator | |||||
Toolbar.Link | |||||
| href | string | Destination URL when the component renders as a link. | — | ✓ | — |
| children | Snippet | Content rendered inside the component. | — | ✓ | — |