Components
Loading preview...
Here is Tag Group component
@jollyshopland
npx shadcn@latest add https://21st.dev/r/jollyshopland/tag-group"use client"
import { Text } from "react-aria-components"
import { Label } from "@/components/ui/text-field-basic"
import { Tag, TagGroup, TagList } from "@/components/ui/tag-group"
export default function TagHelperText() {
return (
<TagGroup className="space-y-1">
<Label>Categories</Label>
<TagList>
<Tag>News</Tag>
<Tag>Travel</Tag>
<Tag>Gaming</Tag>
<Tag>Shopping</Tag>
</TagList>
<Text className="text-sm text-muted-foreground" slot="description">
Your selected categories.
</Text>
</TagGroup>
)
}