set text-primary color for add email icon

This commit is contained in:
Pramod Mahajan 2025-05-20 22:43:32 +05:30
parent 0c44ae76f8
commit 37066904e3

View File

@ -210,7 +210,7 @@ useEffect(() => {
// onClick={handleAddEmail} // onClick={handleAddEmail}
// style={{ width: "24px", height: "24px" }} // 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 // <button
// type="button" // type="button"
@ -218,7 +218,7 @@ useEffect(() => {
// onClick={() => removeEmail(index)} // onClick={() => removeEmail(index)}
// style={{ width: "24px", height: "24px" }} // 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> </div>