Skip to content

Commit 995c1af

Browse files
committed
refactor: use text-primary styling class
1 parent 4875a62 commit 995c1af

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/ui/Hint.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ type HintProps = {
66
};
77

88
function Hint({ children, className }: HintProps): ReactElement {
9-
return <div className={`bg-blue-50 text-blue-500 p-3 border border-blue-200 rounded text-base hint-container ${className}`}>{children}</div>;
9+
return <div className={`bg-blue-50 text-primary p-3 border border-blue-200 rounded text-base hint-container ${className}`}>{children}</div>;
1010
}
1111

1212
export default Hint;

0 commit comments

Comments
 (0)