-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNav.js
More file actions
35 lines (30 loc) · 1.28 KB
/
Nav.js
File metadata and controls
35 lines (30 loc) · 1.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
import React from "react";
import './Nav.css';
import SearchIcon from '@material-ui/icons/Search';
import NavContents from "./NavContents";
import AppsIcon from '@material-ui/icons/Apps'
import SupervisorAccountIcon from '@material-ui/icons/SupervisorAccount';
import BusinessCenterIcon from '@material-ui/icons/BusinessCenter';
import ChatIcon from '@material-ui/icons/Chat';
import NotificationsIcon from '@material-ui/icons/Notifications';
import MenuIcon from '@material-ui/icons/Menu';
function Nav() {
return (
<div className="nav_container">
<div className="nav_left">
<NavContents Icon={MenuIcon}/>
<img src="https://cdn4.vectorstock.com/i/1000x1000/23/08/gmail-new-icon-vector-34182308.jpg" alt="" />
<div className="search_box">
<SearchIcon />
<input type="text" placeholder="Search" />
</div>
</div>
<div className="nav_right">
<NavContents Icon={AppsIcon} title="" />
<NavContents Icon={NotificationsIcon} title="Notification" />
<NavContents avatar title="Me" />
</div>
</div>
)
}
export default Nav;