set text-primary color for add email icon

This commit is contained in:
Pramod Mahajan 2025-05-20 22:43:32 +05:30
parent 7f8784bf6a
commit 89221dec38

View File

@ -210,7 +210,7 @@ useEffect(() => {
// onClick={handleAddEmail}
// style={{ width: "24px", height: "24px" }}
// >
<i className="bx bx-plus-circle bx-xs ms-1 cursor-pointer" onClick={handleAddEmail} />
<i className="bx bx-plus-circle bx-xs ms-1 cursor-pointer text-primary" onClick={handleAddEmail} />
) : (
// <button
// type="button"
@ -218,7 +218,7 @@ useEffect(() => {
// onClick={() => removeEmail(index)}
// style={{ width: "24px", height: "24px" }}
// >
<i className="bx bx-minus-circle bx-xs ms-1 cursor-pointer" onClick={() => removeEmail(index)} />
<i className="bx bx-minus-circle bx-xs ms-1 cursor-pointer text-primary" onClick={() => removeEmail(index)} />
)}
</div>