@material-ui/icons APIs
- ExpandMore
- Delete
- Close
- Visibility
- VisibilityOff
- Check
- Add
- Edit
- Search
- ExpandLess
- Settings
- Person
- Info
- Clear
- ExitToApp
- ArrowDropDown
- Home
- GitHub
- Warning
- ArrowBack
- SearchOutlined
- Done
- LocationOn
- PlayArrow
- Apps
- Brightness4
- Brightness7
- Description
- KeyboardArrowDown
- KeyboardArrowLeft
- KeyboardArrowRight
- MoreVert
- LocationCity
- Map
- Image
- AccountCircle
- InfoOutlined
- Create
- Block
- Replay
- AddCircle
- HomeRounded
- GetApp
- ChevronLeft
- ChevronRight
- CloudDownload
- CheckCircleOutline
- Send
- LockOpen
- Cancel
- NavigateNext
- AccountBox
- DragIndicator
- FavoriteBorderOutlined
- AccessTime
- DoneAll
- CheckCircle
- CropFree
- LockOutlined
- Undo
- Dashboard
- People
- PhotoLibrary
- HomeOutlined
- Group
- ArrowDropUp
- Remove
- ArrowUpward
- Save
- ArrowForward
- AttachFile
- Headset
- SignalCellularAlt
- ArrowForwardIos
- PlayCircleFilled
- AccessAlarm
- Adjust
- BarChart
- CloseRounded
- PlayArrowOutlined
- ImageRounded
- MenuBookRounded
- RefreshRounded
- HourglassEmptyOutlined
- Announcement
- Ballot
- QuestionAnswerOutlined
- CloudUpload
- SkipNext
- ArrowRightAlt
- MoreHoriz
- FileCopy
- MenuBook
- Language
- AlternateEmail
- FolderOpen
- Lock
- Pets
- AddCircleRounded
- ExploreRounded
- WbSunnyRounded
- Brightness2Rounded
- DonutLargeRounded
- AssistantRounded
- AccountCircleRounded
- ExitToAppRounded
- VpnKey
- MailOutline
- Smartphone
- DeleteForever
- LanguageOutlined
- Colorize
- SignalCellularConnectedNoInternet2Bar
- SignalCellularConnectedNoInternet0Bar
- SignalCellular4Bar
- DeleteOutline
- NewReleases
- LocalOffer
- Assessment
- Place
- TrendingDown
- ShoppingCart
- Stop
- RotateLeft
- Menu
- Flag
- Forum
- GroupSharp
- InsertEmoticon
- NotificationsActive
- PhoneIphone
- AllInbox
- Comment
- Photo
- PlaylistAddCheck
- CloudUploadRounded
- ExpandMoreOutlined
- History
- PersonOutlineOutlined
- ArrowForwardIosRounded
- ArrowBackIosRounded
- AssignmentOutlined
- VerticalAlignCenterOutlined
- CalendarTodayOutlined
- Error
- PlaylistPlay
- MusicNoteTwoTone
- Portrait
- ExploreOutlined
- DeleteRounded
- EditRounded
- SaveRounded
- CreateNewFolder
- MeetingRoom
- MenuOpenRounded
- MenuRounded
- DateRange
- CallEnd
- Assignment
- KeyboardBackspace
- BluetoothSearching
- CameraAlt
- PlaylistAdd
- Favorite
- Bluetooth
- OpenInBrowser
- Loop
- FileCopyOutlined
- NavigateBefore
- MergeType
- Dvr
- PersonOutline
- PlayCircleFilledWhiteOutlined
- StoreMallDirectoryOutlined
- SupervisedUserCircleOutlined
- MonetizationOn
- OpenInNew
- ArrowDownward
- AddBox
- FilterList
- FirstPage
- LastPage
- ViewColumn
- Notifications
- DriveEta
- LocalTaxi
- Redo
- AccountTree
- TextFields
- SaveAlt
- ThumbDown
- ThumbUp
- LocalPhone
- VolumeUp
- VolumeDown
- Translate
- AddCircleOutlined
- RemoveCircleOutlined
- Router
- RemoveRedEye
- Chat
- Mood
- Mic
OtherRelated APIs
- react-router-dom#useHistory
- react-router-dom#Link
- react-router-dom#useLocation
- react-redux#useDispatch
- @material-ui/core/styles#makeStyles
- @material-ui/core#Typography
- @material-ui/core#AppBar
- @material-ui/core#Toolbar
- @material-ui/core#IconButton
- @material-ui/core#BottomNavigation
- @material-ui/core#BottomNavigationAction
- @material-ui/icons#LocationOn
- @material-ui/icons#Person
- @material-ui/icons#Home
- @material-ui/icons#Map
- @material-ui/icons#AllInbox
- @material-ui/icons#Comment
- @material-ui/icons#Photo
- @material-ui/icons#PhotoLibrary
- @material-ui/icons#PlaylistAddCheck
- @material-ui/icons#KeyboardBackspace
@material-ui/icons#People JavaScript Examples
The following examples show how to use
@material-ui/icons#People.
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: side-bar.js From react-redux-jsonplaceholder with MIT License | 6 votes |
Links = [
{
primary: "Albums",
to: "/albums",
icon: <PhotoLibrary color={"primary"} />,
},
{ primary: "Comments", to: "/comments", icon: <Comment color={"primary"} /> },
{ primary: "Photos", to: "/photos", icon: <Photo color={"primary"} /> },
{ primary: "Posts", to: "/posts", icon: <AllInbox color={"primary"} /> },
{
primary: "Todos",
to: "/todos",
icon: <PlaylistAddCheck color={"primary"} />,
},
{ primary: "Users", to: "/users", icon: <People color={"primary"} /> },
]
Example #2
Source File: Navigation.js From pwa with MIT License | 6 votes |
routes = [
{
to: '/home',
label: 'خانه',
icon: <Home />,
},
{
to: '/map',
label: 'نقشه',
icon: <Map />,
},
{
to: '/my-activities',
label: 'من',
icon: <Person />,
},
{
to: '/family-activities',
label: 'خانواده',
icon: <People />,
},
{
to: '/informing',
label: 'آگاهیبخشی',
icon: <Assignment />,
},
]
Example #3
Source File: MyActivityEvents.js From pwa with MIT License | 5 votes |
export default function MyActivityEvents(props) {
let history = useHistory();
const dispatch = useDispatch();
return (
<>
<AppBar position="static" className="activity-header">
<Toolbar variant="regular">
<img src={logo} className="app-header-logo" />
<IconButton
color="inherit"
onClick={() => {
dispatch(showNav());
history.push('/my-activities');
}}
>
<KeyboardBackspace />
</IconButton>
</Toolbar>
</AppBar>
<div className={`contentWrapper MyActivityEventsWrapper`}>
<div
className="myActivityRow healthInfo"
onClick={() => {
history.push('/my-health-event');
}}
>
<Person color="primary" style={{ fontSize: 50 }} />
<div className="content">
<h3>{PersianLan.myActivitiesTab.interHealthInfo}</h3>
<p>{PersianLan.myActivitiesTab.interHealthInfoContent}</p>
</div>
</div>
<div className="myActivityRow locationInfo disabled">
<LocationOn color="primary" style={{ fontSize: 50 }} />
<div className="content">
<h3>{PersianLan.myActivitiesTab.interLocation}</h3>
<p>{PersianLan.myActivitiesTab.interLocationContent}</p>
</div>
</div>
<div className="myActivityRow meetings disabled">
<People color="primary" style={{ fontSize: 50 }} />
<div className="content">
<h3>{PersianLan.myActivitiesTab.interMeetings}</h3>
<p>{PersianLan.myActivitiesTab.interMeetingsContent}</p>
</div>
</div>
</div>
</>
);
}