import {LinkButton} 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 ( } to={gettingStartedLink} > {t('Back')} {t('Full Documentation')} ); }