Components
A tag selector where tags animate with blur and spring motion as they move between an available list and a selected list.
Loading preview...
import AnimatedTags from "@/components/ui/animated-tags";
export default function AnimatedTagsDemo() {
return (
<div className="flex min-h-[360px] w-full items-center justify-center bg-background text-foreground">
<AnimatedTags
initialTags={[
"react",
"tailwindcss",
"javascript",
"typescript",
"nextjs",
]}
/>
</div>
);
}