I have to add an location icon in the placeholder of a label in react.
<label>
Places
<input
className="p-2"
type="text"
placeholder="Places of the Package"
></input>
</label>
chatgpt said that following code
<label>
Places
<div class="input-group">
<input
type="text"
class="form-control"
placeholder="Places of the Package"
/>
<span class="input-group-text">
<i class="bi bi-geo-alt"></i>
</span>
</div>
</label>
But this also did not worked. Any alternatives for this issue ?
3
Answers
You need to install the Bootstrap icons using
npm i bootstrap-icons
Check out the official Boostrap Icons repo to learn more.
I hope it works for you
you can used that code
`enter code
`