Skip to content

Commit

Permalink
build(github-actions): add github actions workflows for pnpm
Browse files Browse the repository at this point in the history
  • Loading branch information
Rami-init committed Feb 23, 2024
1 parent 89f7ae1 commit 8439dad
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions packages/ui/src/components/badge.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,10 @@ const badgeVariants = cva(

export interface BadgeProps
extends Omit<React.HTMLAttributes<HTMLDivElement>, "color">,
VariantProps<typeof badgeVariants> {
selected?: boolean;
}
VariantProps<typeof badgeVariants> {}

function Badge(props: BadgeProps): JSX.Element {
const { className, variant, selected, color, size, ...restProps } = props;
const { className, variant, color, size, ...restProps } = props;
return (
<div
className={cn(badgeVariants({ color, variant, size }), className)}
Expand Down

0 comments on commit 8439dad

Please sign in to comment.