Replaced buttons with icon-only UI for cleaner layout and smaller size

This commit is contained in:
Pramod Mahajan 2025-05-20 18:16:10 +05:30
parent 7a30c74594
commit 75ab8f677c

View File

@ -269,7 +269,7 @@ useEffect(() => {
// onClick={handleAddPhone}
// style={{ width: "24px", height: "24px" }}
// >
<i className="bx bx-plus-circle bx-xs ms-1 cursor-pointer" onClick={handleAddPhone} />
<i className="bx bx-plus-circle bx-xs ms-1 cursor-pointer text-primary" onClick={handleAddPhone} />
) : (
// <button
@ -278,7 +278,7 @@ useEffect(() => {
// onClick={() => removePhone(index)}
// style={{ width: "24px", height: "24px" }}
// >
<i className="bx bx-minus-circle bx-xs ms-1 cursor-pointer" onClick={() => removePhone(index)} />
<i className="bx bx-minus-circle bx-xs ms-1 cursor-pointer text-danager" onClick={() => removePhone(index)} />
)}
</div>