Skip to content
ts
import Toolbar from '~/ui/Toolbar.vue'

Toolbar

Organize a set of related UI controls such as Buttons, Selects and Switches

ts
const {
  uiBlockSize = '40',
  uiGap = '48 8',
  uiShrinkable = undefined,
  ...props
} = defineProps<WithAttributes<{
  ariaControls?: string
  ariaLabel?: string
  class: {
    layout?: 'layout-row'
  }
  uiBlockSize?: '24' | '40' | '48'
  uiGap?: '48 8' | '48 16' | '16'
  uiShrinkable?: boolean
}>>()