1234567891011121314151617181920212223242526 |
- import {Button} from 'sentry/components/button';
- import ButtonBar from 'sentry/components/buttonBar';
- import {IconChevron} from 'sentry/icons';
- import {t} from 'sentry/locale';
- type Props = {
- docsLink: string;
- gettingStartedLink: string;
- };
- export default function PlatformHeaderButtonBar({gettingStartedLink, docsLink}: Props) {
- return (
- <ButtonBar gap={1}>
- <Button
- size="sm"
- icon={<IconChevron size="xs" direction="left" />}
- to={gettingStartedLink}
- >
- {t('Back')}
- </Button>
- <Button size="sm" href={docsLink} external>
- {t('Full Documentation')}
- </Button>
- </ButtonBar>
- );
- }
|