Skip to content

Commit

Permalink
Update index.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
nermalcat69 committed Jan 31, 2025
1 parent 9d1bcc9 commit d42e68d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions apps/docs/src/components/Badge/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ const Badge: React.FC<BadgeProps> = ({
className = '',
}) => {
const colorClasses = {
blue: 'bg-blue-100 text-blue-800',
green: 'bg-green-100 text-green-800',
yellow: 'bg-yellow-50 text-yellow-800',
red: 'bg-red-100 text-red-800',
purple: 'bg-purple-100 text-purple-800',
gray: 'bg-gray-100 text-gray-800',
blue: 'bg-blue-200 text-blue-900 dark:bg-blue-800 dark:text-blue-50',
green: 'bg-green-200 text-green-900 dark:bg-green-800 dark:text-green-50',
yellow: 'bg-yellow-100 text-yellow-800 dark:bg-yellow-800 dark:text-yellow-50',
red: 'bg-red-200 text-red-900 dark:bg-red-800 dark:text-red-50',
purple: 'bg-purple-200 text-purple-900 dark:bg-purple-800 dark:text-purple-50',
gray: 'bg-gray-200 text-gray-900 dark:bg-gray-800 dark:text-gray-50',
};

return (
Expand Down

0 comments on commit d42e68d

Please sign in to comment.