|
@@ -19,6 +19,7 @@ import {
|
|
|
PlatformKey,
|
|
|
} from 'sentry/data/platformCategories';
|
|
|
import platforms from 'sentry/data/platforms';
|
|
|
+import {IconChevron} from 'sentry/icons';
|
|
|
import {t, tct} from 'sentry/locale';
|
|
|
import {PageHeader} from 'sentry/styles/organization';
|
|
|
import space from 'sentry/styles/space';
|
|
@@ -111,8 +112,12 @@ class ProjectInstallPlatform extends Component<Props, State> {
|
|
|
<StyledPageHeader>
|
|
|
<h2>{t('Configure %(platform)s', {platform: platform.name})}</h2>
|
|
|
<ButtonBar gap={1}>
|
|
|
- <Button size="sm" to={gettingStartedLink}>
|
|
|
- {t('< Back')}
|
|
|
+ <Button
|
|
|
+ icon={<IconChevron direction="left" size="sm" />}
|
|
|
+ size="sm"
|
|
|
+ to={gettingStartedLink}
|
|
|
+ >
|
|
|
+ {t('Back')}
|
|
|
</Button>
|
|
|
<Button size="sm" href={platformLink} external>
|
|
|
{t('Full Documentation')}
|