Browse Source

fix: Add text-slate-900 color to checkbox component and

pull/600/head
Kamil Dzieniszewski 1 year ago
parent
commit
79c8c64ed4
  1. 2
      src/components/UI/Checkbox/index.tsx

2
src/components/UI/Checkbox/index.tsx

@ -64,7 +64,7 @@ export function Checkbox({
onClick={handleToggle}
role="presentation"
className={cn(
"w-6 h-6 border-2 border-gray-500 rounded-md flex items-center justify-center",
"w-6 h-6 border-2 border-gray-500 rounded-md flex items-center justify-center text-slate-900",
disabled
? "opacity-50 cursor-not-allowed"
: "cursor-pointer focus:outline-none focus:ring-2 focus:ring-blue-500 focus:ring-offset-2",

Loading…
Cancel
Save