Skip to content

Commit

Permalink
fix: add missing dark class names of the progress component
Browse files Browse the repository at this point in the history
  • Loading branch information
bacali95 committed Apr 14, 2022
1 parent 7ce0d0a commit 09cfef4
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/components/Progress/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ export type ProgressProps = PropsWithChildren<{
}>;

const colorClasses: Record<Color, string> = {
dark: 'bg-gray-600 dark:bg-gray-300',
blue: 'bg-blue-600',
red: 'bg-red-600',
purple: 'bg-purple-600',
dark: 'bg-gray-600',
green: 'bg-green-600',
red: 'bg-red-600 dark:bg-red-500',
green: 'bg-green-600 dark:bg-green-500',
yellow: 'bg-yellow-400',
indigo: 'bg-indigo-600',
indigo: 'bg-indigo-600 dark:bg-indigo-500',
purple: 'bg-purple-600 dark:bg-purple-500',
};
const sizeClasses: Record<Size, string> = {
sm: 'h-1.5',
Expand Down

0 comments on commit 09cfef4

Please sign in to comment.