Rounded outlined tag with a colored icon, six built-in pastel color variants, size options, and an animated stacked group layout.
"use client"; import { TagGroup } from "@/components/ui/tag"; export default function TagDemo() { return ( <div className="flex min-h-[34rem] w-full items-center justify-center px-6 py-10 sm:px-10"> <TagGroup size="md" className="w-fit items-center" /> </div> ); }