Fixed
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
import React from "react";
|
||||
import styles from "./styles.module.css";
|
||||
import SearchIcon from "../icons/search";
|
||||
const MobileSearchBar = (props) => {
|
||||
return (
|
||||
<div className={styles.searchBarContainer}>
|
||||
<input type="text" className={styles.searchBar} />
|
||||
<SearchIcon className={styles.searchIcon} />
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default MobileSearchBar;
|
||||
Reference in New Issue
Block a user