react-icons/md APIs
- MdClose
- MdSearch
- MdEmail
- MdLocationOn
- MdMenu
- MdKeyboardArrowRight
- MdCancel
- MdAdd
- MdPerson
- MdArrowForward
- MdPeople
- MdSettings
- MdCheckBox
- MdClear
- MdStar
- MdSmartphone
- MdFileUpload
- MdHome
- MdPause
- MdPlayArrow
- MdComputer
- MdChevronRight
- MdRateReview
- MdImage
- MdCheckCircle
- MdKeyboardArrowDown
- MdNavigateBefore
- MdNavigateNext
- MdDone
- MdCheck
- MdHelp
- MdPhoneIphone
- MdFlag
- MdAssignmentTurnedIn
- MdReceipt
- MdPrint
- MdKeyboardArrowLeft
- MdFilterList
- MdScreenShare
- MdArrowForwardIos
- MdDateRange
- MdDelete
- MdEdit
- MdArchive
- MdReplay
- MdLabel
- MdLoyalty
- MdInbox
- MdDesktopWindows
- MdDesktopMac
- MdLaptop
- MdKeyboard
- MdMemory
- MdSpeaker
- MdTv
- MdVideogameAsset
- MdWatch
- MdCameraswitch
- MdHeadset
- MdDeleteOutline
- MdSubdirectoryArrowRight
- MdRemoveRedEye
- MdVisibility
- MdVisibilityOff
- MdRotateLeft
- MdInfoOutline
- MdShoppingCart
- MdFavorite
- MdChatBubble
- MdEvent
- MdWebAsset
- MdLanguage
- MdForum
- MdPhone
- MdMoreVert
- MdFastRewind
- MdFastForward
- MdVolumeOff
- MdVolumeMute
- MdVolumeDown
- MdVolumeUp
- MdCallMade
- MdFileDownload
- MdPauseCircleFilled
- MdPlayCircleFilled
- MdCallReceived
- MdFullscreenExit
- MdFullscreen
- MdPictureInPictureAlt
- MdRemove
- MdErrorOutline
- MdFlipToBack
- MdLoop
- MdPictureInPicture
- MdToday
- MdAccessTime
- MdBusiness
- MdLink
- MdKeyboardTab
- MdPlace
- MdDashboard
- MdCardTravel
- MdBookmark
- MdContactMail
- MdVerified
- MdChevronLeft
- MdArrowDropDownCircle
- MdExpandMore
- MdRemoveFromQueue
- MdFindInPage
- MdCompareArrows
- MdPlaylistAddCheck
- MdArrowBack
- MdAccountCircle
- MdPhotoSizeSelectActual
OtherRelated APIs
react-icons/md#MdDashboard JavaScript Examples
The following examples show how to use
react-icons/md#MdDashboard.
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: Menu.js From fokus with GNU General Public License v3.0 | 6 votes |
export function Menu() {
return (
<MenuContainer>
<AppLogoContainer>
<img src={logo} alt="logo" />
</AppLogoContainer>
<MenuOptions exact to="/">
<MdDashboard data-tip="" data-for="dashboard" />
<ReactTooltip id="dashboard" getContent={() => "Dashboard"} />
</MenuOptions>
<MenuOptions exact to="/notes">
<BiNotepad data-tip="" data-for="notes" />
<ReactTooltip id="notes" getContent={() => "Notes"} />
</MenuOptions>
<DummyMenuOptions>
<BiExclude data-tip="" data-for="analytics" />
<ReactTooltip id="analytics" getContent={() => "Coming Soon"} />
</DummyMenuOptions>
<MenuOptions exact to="/settings">
<MdSettings data-tip="" data-for="settings" />
<ReactTooltip id="settings" getContent={() => "Settings"} />
</MenuOptions>
<AppTextLogoContainer>
<img src={namedLogoLight} alt="fokus" />
</AppTextLogoContainer>
</MenuContainer>
);
}