File tree Expand file tree Collapse file tree
src/components/Calendar/CalenderComponent Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ export default function Labels() {
99
1010 return (
1111 < React . Fragment >
12- < p className = "text-gray-500 font-bold " > Label</ p >
12+ < p className = "text-white font-bold " > Label</ p >
1313 { Array . from ( labelsClasses . entries ( ) ) . map ( ( [ label , color ] , idx ) => {
1414 const checked =
1515 labels . find ( ( lbl ) => lbl . label === label ) ?. checked || false ;
@@ -21,12 +21,12 @@ export default function Labels() {
2121 onChange = { ( ) => updateLabel ( { label, checked : ! checked } ) }
2222 className = { `form-checkbox h-5 w-5 text-${ color } -400 rounded focus:ring-0 cursor-pointer` }
2323 />
24- < span className = "ml-2 text-gray-700 font-medium capitalize" >
24+ < span className = "ml-2 text-white font-medium capitalize" >
2525 { label }
2626 </ span >
2727 </ label >
2828 ) ;
2929 } ) }
3030 </ React . Fragment >
3131 ) ;
32- }
32+ }
You can’t perform that action at this time.
0 commit comments