Astro Dev Toolbar App showcasing the built-in components listed in the docs
npm install astro-dev-toolbar-showcase

Astro Dev Toolbar App showcasing the following built-in components:
- astro-dev-toolbar-button
- astro-dev-toolbar-badge
- astro-dev-toolbar-card
- astro-dev-toolbar-toggle
- astro-dev-toolbar-radio-checkbox
- astro-dev-toolbar-highlight
- astro-dev-toolbar-tooltip
- astro-dev-toolbar-icon
``sh`
npx astro add astro-dev-toolbar-showcase
First, install the astro-dev-toolbar-showcase package:
`sh`
npm install -D astro-dev-toolbar-showcase
Then, add the astro-dev-toolbar-showcase integration to your Astro config:
`ts
import { defineConfig } from "astro/config";
import showcase from "astro-dev-toolbar-showcase";
export default defineConfig({
integrations: [showcase()],
});
``