Skip to content

Commit

Permalink
mib
Browse files Browse the repository at this point in the history
  • Loading branch information
irsyadadl committed Aug 19, 2024
1 parent 6b37b9e commit e42748e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion components/resources.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ export function Resources() {
</Card.Header>
</div>
<Card.Footer>
<Badge>icons</Badge>
<Badge>justd-icons</Badge>
</Card.Footer>
</Grid.Item>
</Grid>
Expand Down
2 changes: 1 addition & 1 deletion components/ui/badge.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { tv, type VariantProps } from "tailwind-variants"

const badgeIntents = {
primary:
"ring-primary/30 bg-primary/10 dark:bg-primary/20 text-primary dark:text-primary hover:bg-primary/15 dark:hover:bg-primary/10",
"ring-primary/30 bg-primary/10 dark:bg-primary/10 text-primary dark:text-primary hover:bg-primary/15 dark:hover:bg-primary/10",
secondary: "bg-secondary/50 dark:bg-secondary/70 ring-secondary-fg/20 text-secondary-fg",
success:
"dark:ring-success/30 ring-success/40 bg-success/10 dark:bg-success/15 text-success hover:bg-success/15 dark:hover:bg-success/10",
Expand Down
5 changes: 4 additions & 1 deletion components/ui/tag-group.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

import React from "react"

import { IconPlus, IconX } from "justd-icons"
import type {
TagGroupProps as TagGroupPrimitiveProps,
TagListProps,
Expand Down Expand Up @@ -169,7 +170,9 @@ const TagItem = ({ children, className, intent, shape, ...props }: TagProps) =>
)
})}
>
<span className="rotate-45 text-base/4 -mr-px">+</span>
<span className="shrink-0 text-base/4 -mr-px">
<IconX className="size-3" />
</span>
</Button>
)}
</>
Expand Down

0 comments on commit e42748e

Please sign in to comment.