Skip to content

Commit 2d28dad

Browse files
authored
chore(replay): Update icon for next breadcrumb button from IconNext to IconChevron (#102985)
In prep for #102583, swap the `IconNext` logo with `IconChevron` to free up for the replay playlist buttons.
1 parent bc84efe commit 2d28dad

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

static/app/components/replays/replayController.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import {useReplayContext} from 'sentry/components/replays/replayContext';
99
import {ReplayFullscreenButton} from 'sentry/components/replays/replayFullscreenButton';
1010
import ReplayPlayPauseButton from 'sentry/components/replays/replayPlayPauseButton';
1111
import TimeAndScrubberGrid from 'sentry/components/replays/timeAndScrubberGrid';
12-
import {IconNext, IconRewind10} from 'sentry/icons';
12+
import {IconChevron, IconRewind10} from 'sentry/icons';
1313
import {t} from 'sentry/locale';
1414
import {space} from 'sentry/styles/space';
1515
import {getNextReplayFrame} from 'sentry/utils/replays/getReplayEvent';
@@ -46,7 +46,7 @@ function ReplayPlayPauseBar({isLoading}: {isLoading?: boolean}) {
4646
disabled={isLoading}
4747
size="sm"
4848
title={t('Next breadcrumb')}
49-
icon={<IconNext size="sm" />}
49+
icon={<IconChevron size="sm" direction="right" />}
5050
onClick={() => {
5151
if (!replay) {
5252
return;

0 commit comments

Comments
 (0)