Components
Loading preview...
Here is Tag Group component
@jollyshopland
npx shadcn@latest add https://21st.dev/r/jollyshopland/tag-groupimport { Label } from "@/components/ui/text-field-basic"
import { TagGroup, TagList } from "@/components/ui/tag-group"
export default function TagGroupEmpty() {
return (
<TagGroup>
<Label>Categories</Label>
<TagList renderEmptyState={() => "No categories."}>{[]}</TagList>
</TagGroup>
)
}