@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#lazy
- @mui/icons-material#Update
- @mui/icons-material#WbSunny
- @mui/icons-material#Search
- @mui/icons-material#Brush
- @mui/icons-material#ManageAccounts
- @mui/icons-material#PhotoLibrary
- @mui/icons-material#SettingsBackupRestore
- @mui/icons-material#SupervisorAccount
- @mui/icons-material#Api
- @mui/icons-material#BugReportOutlined
- @mui/icons-material#NewReleases
- @mui/icons-material#ColorLens
- @mui/icons-material#FolderOutlined
@mui/icons-material#FeaturedPlayList TypeScript Examples
The following examples show how to use
@mui/icons-material#FeaturedPlayList.
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: router.tsx From Search-Next with GNU General Public License v3.0 | 4 votes |
routers: Router[] = [
{
path: '/',
title: '首页',
component: lazy(() => import('@pages/index')),
},
{
path: 'navigation/:classify',
title: '导航',
component: lazy(() => import('@pages/navigation')),
},
{
path: 'setting',
title: '设置',
exact: false,
component: SettingPage,
routes: [
{
title: '账户',
path: 'auth',
component: Auth,
routes: [
{
title: '账户信息',
icon: <ManageAccounts />,
path: 'info',
component: Info,
},
{
title: '其他账户',
icon: <SupervisorAccount />,
path: 'others',
component: Others,
},
],
},
{
title: '个性化',
path: 'personalise',
component: Personalise,
routes: [
{
title: '背景',
icon: <PhotoLibrary />,
path: 'background',
component: Background,
},
{
title: 'Logo',
icon: <Brush />,
path: 'logo',
component: Logo,
},
{
title: '主题',
icon: <ColorLens />,
path: 'theme',
component: Theme,
},
],
},
{
title: '功能',
icon: <FeaturedPlayList />,
path: 'features',
component: Features,
routes: [
{
title: '导航页',
icon: <NavigationIcon />,
path: 'navigation',
component: Navigation,
},
{
title: '通知与消息',
icon: <MessageIcon />,
path: 'message',
component: Message,
routes: [
{
title: '版本更新',
icon: <NewReleases />,
path: 'release',
component: ReleasesView,
},
],
},
],
},
{
title: '数据',
path: 'data',
component: Data,
routes: [
{
title: '备份与恢复',
icon: <SettingsBackupRestore />,
path: 'backup',
component: Backup,
},
],
},
{
title: '实验室',
path: 'lab',
component: Lab,
routes: [
{
title: '第三方API',
icon: <Api />,
path: 'otherApis',
component: OtherApis,
},
{
title: '搜索引擎',
icon: <Search />,
path: 'search-engine',
component: Engine,
routes: [
{
title: '搜索引擎详情',
icon: <Search />,
path: 'engine-detail/:id',
component: EngineDetail,
},
],
},
{
title: '天气',
icon: <WbSunny />,
path: 'weather',
component: Weather,
status: 'process',
},
{
title: '搜索框',
icon: <Search />,
path: 'search-bar',
component: SearchBar,
status: 'process',
},
],
},
{
title: '关于',
path: 'about',
component: About,
routes: [
{
title: '历史版本记录',
icon: <Update />,
path: 'releases',
component: Releases,
},
{
title: '历史提交记录',
icon: <Update />,
path: 'commits',
component: Commits,
},
{
title: '用户体验计划',
icon: <BugReportOutlined />,
path: 'beta',
component: Beta,
},
{
title: '项目依赖',
icon: <FolderOutlined />,
path: 'dependencies',
component: Dependencies,
},
],
},
],
},
{
path: '/help/:text',
title: '帮助',
component: lazy(() => import('@pages/help')),
},
]