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 TagErrorText() {
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 font-medium text-destructive"
slot="errorMessage"
>
Invalid set of categories.
</Text>
</TagGroup>
)
}