chanaged icons

This commit is contained in:
Pramod Mahajan 2025-05-19 11:52:06 +05:30
parent aba02f64c0
commit 1e079a89eb
2 changed files with 8 additions and 8 deletions

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 bx-xs" /> <i className="bx bx-plus-circle bx-xs" />
</button> </button>
) : ( ) : (
<button <button
@ -219,7 +219,7 @@ useEffect(() => {
onClick={() => removeEmail(index)} onClick={() => removeEmail(index)}
style={{ width: "24px", height: "24px" }} style={{ width: "24px", height: "24px" }}
> >
<i className="bx bx-x bx-xs" /> <i className="bx bx-minus-circle bx-xs" />
</button> </button>
)} )}
</div> </div>
@ -270,7 +270,7 @@ useEffect(() => {
onClick={handleAddPhone} onClick={handleAddPhone}
style={{ width: "24px", height: "24px" }} style={{ width: "24px", height: "24px" }}
> >
<i className="bx bx-plus bx-xs" /> <i className="bx bx-plus-circle bx-xs" />
</button> </button>
) : ( ) : (
<button <button
@ -279,7 +279,7 @@ useEffect(() => {
onClick={() => removePhone(index)} onClick={() => removePhone(index)}
style={{ width: "24px", height: "24px" }} style={{ width: "24px", height: "24px" }}
> >
<i className="bx bx-x bx-xs" /> <i className="bx bx-minus-circle bx-xs" />
</button> </button>
)} )}
</div> </div>

View File

@ -245,7 +245,7 @@ await submitContact({ ...cleaned, id: existingContact.id });
onClick={handleAddEmail} onClick={handleAddEmail}
style={{ width: "24px", height: "24px" }} style={{ width: "24px", height: "24px" }}
> >
<i className="bx bx-plus bx-xs" /> <i className="bx bx-plus-circle bx-xs" />
</button> </button>
) : ( ) : (
<button <button
@ -254,7 +254,7 @@ await submitContact({ ...cleaned, id: existingContact.id });
onClick={() => removeEmail(index)} onClick={() => removeEmail(index)}
style={{ width: "24px", height: "24px" }} style={{ width: "24px", height: "24px" }}
> >
<i className="bx bx-x bx-xs" /> <i className="bx bx-minus-circle bx-xs" />
</button> </button>
)} )}
</div> </div>
@ -305,7 +305,7 @@ await submitContact({ ...cleaned, id: existingContact.id });
onClick={handleAddPhone} onClick={handleAddPhone}
style={{ width: "24px", height: "24px" }} style={{ width: "24px", height: "24px" }}
> >
<i className="bx bx-plus bx-xs" /> <i className="bx bx-plus-circle bx-xs" />
</button> </button>
) : ( ) : (
<button <button
@ -314,7 +314,7 @@ await submitContact({ ...cleaned, id: existingContact.id });
onClick={() => removePhone(index)} onClick={() => removePhone(index)}
style={{ width: "24px", height: "24px" }} style={{ width: "24px", height: "24px" }}
> >
<i className="bx bx-x bx-xs" /> <i className="bx bx-minus-circle bx-xs" />
</button> </button>
)} )}
</div> </div>