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 { Tag, TagGroup, TagList } from "@/components/ui/tag-group"
export default function TagLinks() {
return (
<TagGroup className="space-y-1">
<Label>Links</Label>
<TagList>
<Tag href="https://adobe.com/" target="_blank">
Adobe
</Tag>
<Tag href="https://apple.com/" target="_blank">
Apple
</Tag>
<Tag href="https://google.com/" target="_blank">
Google
</Tag>
<Tag href="https://microsoft.com/" target="_blank">
Microsoft
</Tag>
</TagList>
</TagGroup>
)
}