Skip to content

Commit 5c60998

Browse files
Merge pull request #19 from weDevsOfficial/added-help-text-color-for-checkbox-dark-mode
Added help text color for Checkbox dark mode
2 parents a785a8a + 1125cb8 commit 5c60998

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Components/Checkbox/Checkbox.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ const Checkbox: React.FC<CheckboxProps> = ({
5555
{label}
5656
</label>
5757

58-
{help && <div className="text-gray-500">{help}</div>}
58+
{help && <div className="text-gray-500 dark:text-gray-400">{help}</div>}
5959
</div>
6060
</div>
6161
);

0 commit comments

Comments
 (0)