@mui/icons-material APIs
- Close
- Add
- Delete
- ExpandMore
- Settings
- Check
- Update
- GitHub
- MoreVert
- HelpOutline
- ChevronRight
- ExpandLess
- Menu
- FileCopy
- CheckBox
- CheckBoxOutlineBlank
- ArrowBack
- DeleteForever
- Visibility
- VisibilityOff
- Save
- Person
- Edit
- People
- ChevronLeft
- PlayArrow
- Home
- ExitToApp
- MoreHoriz
- WbSunny
- Download
- Upload
- Search
- HighlightOffOutlined
- ContentCopy
- Calculate
- ShoppingCart
- AccountBalance
- BarChart
- Paid
- Clear
- Cancel
- ArrowDownward
- ArrowUpward
- PhotoCamera
- Folder
- InfoOutlined
- Code
- KeyboardArrowDown
- Lock
- LockOpen
- Replay
- Favorite
- Build
- Refresh
- AssignmentInd
- Pets
- Public
- Group
- Brush
- KeyboardTab
- Phone
- HelpOutlineOutlined
- NetworkWifi
- CompareArrows
- AdminPanelSettings
- BugReport
- Logout
- Message
- AddCircle
- LockOutlined
- HomeOutlined
- BarChartOutlined
- MusicNote
- MusicNoteOutlined
- Album
- AlbumOutlined
- PersonOutlined
- SettingsOutlined
- Share
- ShareOutlined
- FastRewind
- Help
- Loop
- VolumeDown
- VolumeUp
- PauseCircle
- PlayCircle
- VolumeOff
- ChatBubbleOutline
- LockRounded
- WifiOffRounded
- VideocamOutlined
- AddRounded
- MoreVertRounded
- SyncProblem
- VideoCallOutlined
- GetAppRounded
- SaveAlt
- ErrorRounded
- InsertDriveFileRounded
- CheckCircleOutline
- CloudOff
- ClearAll
- CloseOutlined
- Link
- AttachmentOutlined
- CodeOutlined
- MailOutlineRounded
- Brightness7Rounded
- MenuRounded
- NightsStayRounded
- ArrowForward
- BrushRounded
- VisibilityRounded
- FileCopyRounded
- FavoriteRounded
- DesktopMacRounded
- PhoneAndroidRounded
- TabletMac
- ThumbUpOutlined
- ThumbDownOutlined
- AssistantPhotoOutlined
- Publish
- Create
- WbCloudy
- Computer
- KeyboardArrowUp
- BusinessCenter
- FavoriteBorder
- Groups
- Shuffle
- Difference
- SwapHoriz
- Info
- KeyboardDoubleArrowDown
- KeyboardDoubleArrowUp
- PersonAdd
- Checkroom
- FactCheck
- ArrowRightAlt
- Scanner
- Brightness4
- Brightness7
- Translate
- Backpack
- SettingsBrightness
- Equalizer
- Handyman
- SentimentVerySatisfied
- SentimentDissatisfied
- SentimentSatisfied
- AccessTime
- Remove
- ArrowDropDown
- ArrowRight
- Undo
- Redo
- CreateNewFolder
- Description
- Outbox
- Inbox
- DriveFileRenameOutline
- ContentPaste
- Block
- Star
- StarBorder
- Security
- Today
- Event
- Login
- Sick
- FaceRetouchingOff
- Fireplace
- ErrorOutline
- Stop
- ViewList
- Send
- PlayCircleFilledWhite
- PlaylistAddCheck
- Telegram
- VerifiedUser
- Notifications
- MenuOpen
- GppGood
- ContactPhone
- Payment
- FolderShared
- Class
- Shield
- MoveUp
- VolunteerActivism
- DisplaySettings
- Apartment
- BusAlert
- Category
- FilterNone
- Forest
- MedicalServices
- School
- SportsTennis
- TheaterComedy
- ReportGmailerrorred
- ArrowCircleUp
- UploadFile
- YouTube
- Web
- AccountCircle
- AccessibilityNew
- Chat
- FolderOpen
- FileCopyOutlined
- KeyboardBackspace
- CheckCircleOutlined
- ReportProblemOutlined
- ManageAccounts
- PhotoLibrary
- SettingsBackupRestore
- SupervisorAccount
- Api
- FeaturedPlayList
- BugReportOutlined
- NewReleases
- ColorLens
- FolderOutlined
- Apps
- SpeakerNotes
- LocalCafe
- BurstModeSharp
- DevicesOther
- VideoLibrary
- AddOutlined
- DeleteOutlineOutlined
- EditOutlined
- MoreHorizOutlined
- Bookmarks
- CopyAll
- InsertComment
- KeyboardArrowRight
- FileDownload
- Done
- PendingOutlined
- HelpOutlineRounded
- ReportProblem
- HelpOutlined
Other Related APIs
- react#useState
- react#useEffect
- react#useCallback
- react#useMemo
- @mui/material#Box
- @mui/material#Button
- @mui/material#IconButton
- @mui/material#Typography
- @mui/material#List
- @mui/material/styles#Theme
- @mui/material/styles#styled
- @mui/material/styles#CSSObject
- @mui/icons-material#ChevronRight
- @mui/icons-material#Settings
- @mui/icons-material#MenuOpen
- @mui/icons-material#GppGood
@mui/icons-material#Notifications TypeScript Examples
The following examples show how to use
@mui/icons-material#Notifications.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: AdminLayout.tsx From frontend with MIT License | 5 votes |
export default function AdminLayout({ children }: Props) {
const theme = useTheme()
const initialOpen = useMemo<boolean>(() => {
const item = typeof window !== 'undefined' ? window.localStorage.getItem('menu-open') : false
if (item) {
return Boolean(JSON.parse(item))
}
return false
}, [])
const [open, setOpen] = useState<boolean>(initialOpen)
useEffect(() => {
if (typeof window !== 'undefined') {
window.localStorage.setItem('menu-open', JSON.stringify(open))
}
}, [open])
const toggleMenu = useCallback(() => setOpen((open) => !open), [])
return (
<StyledBox className={classes.wrapper}>
<AdminAppBar isOpen={open}>
<Box className={classes.appbarHeader}>
<Box sx={{ display: 'flex', alignItems: 'center' }}>
<IconButton>
<Notifications color="info" />
</IconButton>
<PrivateMenu />
</Box>
</Box>
</AdminAppBar>
<Drawer variant="permanent" open={open} theme={theme}>
<DrawerHeader />
<List sx={{ p: '2rem .5rem', height: '100%', position: 'relative' }}>
{items.map(({ items, menu, icon }, index) => (
<HoverMenu isOpen={open} key={index} menu={menu} icon={icon} items={items} />
))}
<CustomListItem icon={open ? <MenuOpen /> : <ChevronRight />} onClick={toggleMenu} />
<CustomListItem
icon={<Settings />}
label={'Настройки'}
sx={{ position: 'absolute', bottom: '1rem' }}
/>
</List>
</Drawer>
<Box component="main" sx={{ flexGrow: 1 }}>
<DrawerHeader />
{children}
</Box>
<PanelFooter>
<Button sx={{ color: 'white' }}>
<GppGood />
</Button>
<Typography color="white">{'Вие сте логнат като администратор'}</Typography>
</PanelFooter>
<Snackbar />
</StyledBox>
)
}