Components
Loading preview...
A dynamic toolbar with animated tool selection and smooth transitions.
npx shadcn@latest add https://21st.dev/r/0xUrvish/dynamic-toolbar"use client";
import DynamicToolbar from "@/components/ui/dynamic-toolbar";
export default function Demo() {
return (
<div className="flex items-center justify-center w-full min-h-screen bg-background p-8">
<DynamicToolbar />
</div>
);
}