@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
@material-ui/icons#NavigateNext JavaScript Examples
The following examples show how to use
@material-ui/icons#NavigateNext.
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: Pager.js From web-wallet with Apache License 2.0 | 6 votes |
function Pager ({ currentPage, isLastPage, onClickNext, onClickBack }) {
return (
<div className={styles.Pager}>
<span className={styles.number}>{`Page ${currentPage}`}</span>
<div
className={[
styles.box,
currentPage === 1 ? styles.disabled : ''
].join(' ')}
onClick={onClickBack}
>
<NavigateBefore className={styles.icon} />
</div>
<div
className={[
styles.box,
isLastPage ? styles.disabled : ''
].join(' ')}
onClick={onClickNext}
>
<NavigateNext className={styles.icon} />
</div>
</div>
);
}
Example #2
Source File: Image.js From Dog-Book with MIT License | 5 votes |
Image = (props) => {
const { breedName } = props;
const [loaded, setLoaded] = useState(false);
const [imgUrl, setImgUrl] = useState(undefined);
useEffect(() => {
if (breedName !== null) {
trackPromise(
axios
.get(`https://dog.ceo/api/breed/${breedName}/images/random`)
.then((response) => {
const url = response.data.message.toString();
setImgUrl(url);
})
);
}
}, [breedName]);
const manageRefresh = () => {
trackPromise(
axios
.get(`https://dog.ceo/api/breed/${breedName}/images/random`)
.then((response) => {
const url = response.data.message.toString();
setImgUrl(url);
})
);
};
return (
<Card>
<CardMedia
title="Dogs Image"
style={{ display: loaded ? "block" : "none" }}
>
<LoadingIndicator />
<img
src={imgUrl}
onLoad={() => setLoaded(true)}
alt={breedName}
style={({ height: "300px" }, { width: "100%" })}
/>
</CardMedia>
<Skeleton
height={300}
variant="rect"
style={{ display: !loaded ? "block" : "none" }}
/>
<CardContent>
<Typography
gutterBottom
variant="h5"
component="h2"
style={{ textTransform: "capitalize" }}
>
{breedName === null ? "No Breed Selected" : breedName}
</Typography>
</CardContent>
<CardActions>
<Button
variant="contained"
color="secondary"
onClick={manageRefresh}
startIcon={<NavigateNext />}
>
Next Image
</Button>
</CardActions>
</Card>
);
}