1234567891011121314151617181920 |
- import Button from 'sentry/components/button';
- import ButtonBar from 'sentry/components/buttonBar';
- 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" to={gettingStartedLink}>
- {t('< Back')}
- </Button>
- <Button size="sm" href={docsLink} external>
- {t('Full Documentation')}
- </Button>
- </ButtonBar>
- );
- }
|