Skip to content

Commit

Permalink
updated: package version
Browse files Browse the repository at this point in the history
  • Loading branch information
mvriu5 committed May 9, 2024
1 parent 2a0e3dc commit f33e2db
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion components/badge/Badge.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export interface BadgeProps extends React.HTMLAttributes<HTMLDivElement>, Varian
}

const Badge = React.forwardRef<HTMLDivElement, BadgeProps>(({ theme, opacity, border, roundness, text, className, ...props }, ref) => (
<div className={cn(badge({ theme, opacity, border, roundness }), className)} ref={ref} {...props}>
<div className={cn(badge({theme, opacity, border, roundness}), className)} ref={ref} {...props}>
<p>{text}</p>
</div>
));
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@marraph/daisy",
"version": "0.0.2",
"version": "0.0.3",
"description": "Daisy is a component library for the marraph organisation",
"scripts": {
"dev": "next dev",
Expand Down

0 comments on commit f33e2db

Please sign in to comment.