-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Cyfurion
committed
Dec 5, 2021
1 parent
9fc0fb5
commit 9897e83
Showing
14 changed files
with
133 additions
and
186 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
import { Box, IconButton } from '@mui/material'; | ||
import HomeIcon from '@mui/icons-material/Home'; | ||
import GroupIcon from '@mui/icons-material/Groups'; | ||
import PersonIcon from '@mui/icons-material/Person'; | ||
import FunctionsIcon from '@mui/icons-material/Functions'; | ||
import SortIcon from '@mui/icons-material/Sort'; | ||
|
||
function Toolbar() { | ||
return ( | ||
<div id="list-selector-heading"> | ||
<IconButton aria-label="home"> | ||
<HomeIcon /> | ||
</IconButton> | ||
<IconButton aria-label="all"> | ||
<GroupIcon /> | ||
</IconButton> | ||
<IconButton aria-label="user"> | ||
<PersonIcon /> | ||
</IconButton> | ||
<IconButton aria-label="community"> | ||
<FunctionsIcon /> | ||
</IconButton> | ||
<input type="text" id="search-bar" /> | ||
<Box sx={{ display: { xs: 'none', md: 'flex' } }}> | ||
<IconButton | ||
size="large" | ||
aria-label="sort by" | ||
aria-haspopup="true" | ||
sx={{ color: 'black' }} | ||
> | ||
<p id="sort-by-text">SORT BY</p> | ||
<SortIcon /> | ||
</IconButton> | ||
</Box> | ||
</div> | ||
) | ||
} | ||
|
||
export default Toolbar; |
Oops, something went wrong.