continueButton.tsx 369 B

123456789101112131415
  1. import styled from '@emotion/styled';
  2. import {Button} from 'sentry/components/button';
  3. import {t} from 'sentry/locale';
  4. import {space} from 'sentry/styles/space';
  5. function WrappedButton({...props}) {
  6. return <Button {...props}>{t('Continue')}</Button>;
  7. }
  8. const ContinueButton = styled(WrappedButton)`
  9. margin-top: ${space(1.5)};
  10. `;
  11. export default ContinueButton;