diff --git a/static/app/components/breadcrumbs.tsx b/static/app/components/breadcrumbs.tsx
index 8458571338a012..fc0bedeee7a9a7 100644
--- a/static/app/components/breadcrumbs.tsx
+++ b/static/app/components/breadcrumbs.tsx
@@ -6,7 +6,7 @@ import {Text} from '@sentry/scraps/text';
import type {LinkProps} from 'sentry/components/core/link';
import {Link} from 'sentry/components/core/link';
import GlobalSelectionLink from 'sentry/components/globalSelectionLink';
-import {IconChevron} from 'sentry/icons';
+import {IconSlashForward} from 'sentry/icons';
import {trackAnalytics} from 'sentry/utils/analytics';
export interface Crumb {
@@ -57,7 +57,7 @@ export function Breadcrumbs({crumbs, ...props}: BreadcrumbsProps) {
/>
{index < crumbs.length - 1 ? (
-
+
) : null}
diff --git a/static/app/icons/iconSlashForward.tsx b/static/app/icons/iconSlashForward.tsx
new file mode 100644
index 00000000000000..f68168db2eadb5
--- /dev/null
+++ b/static/app/icons/iconSlashForward.tsx
@@ -0,0 +1,10 @@
+import type {SVGIconProps} from './svgIcon';
+import {SvgIcon} from './svgIcon';
+
+export function IconSlashForward(props: SVGIconProps) {
+ return (
+
+
+
+ );
+}
diff --git a/static/app/icons/icons.stories.tsx b/static/app/icons/icons.stories.tsx
index 9f0628c034b1ff..904be64923c16b 100644
--- a/static/app/icons/icons.stories.tsx
+++ b/static/app/icons/icons.stories.tsx
@@ -644,6 +644,13 @@ const SECTIONS: TSection[] = [
direction: 'down',
},
},
+ {
+ id: 'slashFoward',
+ groups: ['navigation'],
+ keywords: ['breadcrumbs', 'directory'],
+ name: 'SlashForward',
+ defaultProps: {},
+ },
],
},
{
diff --git a/static/app/icons/index.tsx b/static/app/icons/index.tsx
index 0e16407fc0692e..feed88768a0e60 100644
--- a/static/app/icons/index.tsx
+++ b/static/app/icons/index.tsx
@@ -113,6 +113,7 @@ export {IconSentryPrideLogo} from './iconSentryPrideLogo';
export {IconSettings} from './iconSettings';
export {IconShow} from './iconShow';
export {IconSiren} from './iconSiren';
+export {IconSlashForward} from './iconSlashForward';
export {IconSliders} from './iconSliders';
export {IconSort} from './iconSort';
export {IconSound} from './iconSound';