-
Notifications
You must be signed in to change notification settings - Fork 0
/
Sidebar copy.js
49 lines (35 loc) · 1.66 KB
/
Sidebar copy.js
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
import React from "react";
import './Sidebar.css'
import TwitterIcon from '@mui/icons-material/Twitter';
import SidebarOption from './SidebarOption';
import HomeIcon from '@mui/icons-material/Home';
import SearchIcon from '@mui/icons-material/Search';
import NotificationsNoneIcon from '@mui/icons-material/NotificationsNone';
import MailOutlineIcon from '@mui/icons-material/MailOutline';
import BookmarkBorderIcon from '@mui/icons-material/BookmarkBorder';
import ListAltIcon from '@mui/icons-material/ListAlt';
import PermIdentityIcon from '@mui/icons-material/PermIdentity';
import MoreHorizIcon from '@mui/icons-material/MoreHoriz';
import { Button } from "@material-ui/core";
import { Box } from "@material-ui/core";
function Sidebar(){
return (
<div className = "sidebar">
<TwitterIcon className = "sidebar__twitterIcon"/>
<SidebarOption active Icon = {HomeIcon} text = "Home" />
<SidebarOption Icon = {SearchIcon} text = "Explore" />
<SidebarOption Icon = {NotificationsNoneIcon} text = "Notifications"/>
<SidebarOption Icon = {MailOutlineIcon} text = "Messages"/>
<SidebarOption Icon = {BookmarkBorderIcon} text = "Bookmarks"/>
<SidebarOption Icon = {ListAltIcon} text = "Lists"/>
<SidebarOption Icon = {PermIdentityIcon} text = "Profile"/>
<SidebarOption Icon = {MoreHorizIcon} text = "More"/>
{/* Button -> Tweet */}
{/* fullWidth Not working*/}
<Button variant="outlined" class="sidebar__tweet" fullWidth = {true}>
Tweet
</Button>
</div>
)
}
export default Sidebar;