- LocationSearchComponent.js when I add  Unicode showing empty icon
const LocationSearchComponent = () => {
return (
<Form className="locationForm">
<Form.Group>
<Form.Control
className="locationSearchTextField"
type="text"
placeholder=" Enter your location"
/>
</Form.Group>
</Form>
);
};
You can add font-awesome to your
index.htmlusing CDN like this:And add this css to your component:
You can take a look at this sandbox for a live working example of this solution.