headerContainer.tsx 222 B

12345678910
  1. import styled from '@emotion/styled';
  2. import {space} from 'sentry/styles/space';
  3. export const HeaderContainer = styled('div')`
  4. display: flex;
  5. flex-wrap: wrap;
  6. justify-content: space-between;
  7. gap: ${space(2)};
  8. `;