BlockDex

Components

Registries

Free blocks

Method

BlockDex

Components

Registries

Free blocks

Method

Open API

BlockDex

Components

Registries

Free blocks

Method

Open API

Components/inovue-ui/toolbar

Toolbar

inovue-ui/toolbar
FreeComponent

A flexible toolbar component with primary and secondary action areas.

Install it

npx shadcn@latest add https://raw.githubusercontent.com/smoosex/inovue-ui/main/public/r/toolbar.json

Source

src/components/toolbar/Toolbar.vueraw.githubusercontent.com/smoosex/inovue-ui/main/public/r/toolbar.json
1<script setup lang="ts">
2import type { ToolbarAction } from "./types";
3import ToolbarItem from "./ToolbarItem.vue";
4
5defineProps<{
6 primaryActions?: ToolbarAction[];
7 secondaryActions?: ToolbarAction[];
8}>();
9</script>
10
11<template>
12 <div class="flex flex-wrap items-center gap-2 sm:gap-3">
13 <div v-if="primaryActions?.length" class="flex min-w-0 flex-wrap items-center gap-2">
14 <ToolbarItem
15 v-for="action in primaryActions"
16 :key="action.key"
17 :action="action"
18 />
19 </div>
20
21 <div
22 v-if="$slots.default"
23 class="flex min-w-0 max-w-full items-center sm:ml-auto"
24 >
25 <slot />
26 </div>
27
28 <div
29 v-if="secondaryActions?.length"
30 class="flex min-w-0 flex-wrap items-center gap-2"
31 :class="!$slots.default ? 'sm:ml-auto' : ''"
32 >
33 <ToolbarItem
34 v-for="action in secondaryActions"
35 :key="action.key"
36 :action="action"
37 />
38 </div>
39 </div>
40</template>

Files it writes

  • src/components/toolbar/Toolbar.vue
  • src/components/toolbar/types.ts
  • src/components/toolbar/index.ts
  • src/components/toolbar/ToolbarItem.vue

Facts

Registry
inovue-ui
Type
registry:component
Access
Free
Files written
4
Licence
the repository states none
First indexed
2026-08-02
Last confirmed
2 days ago

Go to the source

smoosex.github.io smoosex/inovue-ui on GitHub Raw registry item This item as JSON

More from inovue-ui

All 4 items
Same registry, same kind — the ones you would have found next
ComponentRegistryKindAccessInstallsCommand
Advanced Tableadvanced-tableinovue-uiComponentsFree3 deps · 6 files
Date Time Range Pickerdate-time-range-pickerinovue-uiComponentsFree2 deps · 9 files
Smart Search Inputsmart-search-inputinovue-uiComponentsFree1 dep · 12 files
BlockDex

Built by

Kynth Studio

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

BlockDex

BlockDex

Built by

Kynth Studio

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

BlockDex

BlockDex

Built by

Kynth Studio

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

BlockDex