Search.js 334 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
import styles from "./search.module.scss";

const Search = () => {
    return (
        <div className="d-flex">
            <input className="form-control" type="text" id="search" />
            <i className="bi bi-search align-self-center text-white" style={{ fontSize: "1.3rem" }}></i>
        </div>
    )
}

export default Search