pageAlertBar.tsx 312 B

12345678910111213
  1. import styled from '@emotion/styled';
  2. const PageAlertBar = styled('div')`
  3. display: flex;
  4. align-items: center;
  5. justify-content: center;
  6. color: ${p => p.theme.headerBackground};
  7. background-color: ${p => p.theme.bannerBackground};
  8. padding: 6px 30px;
  9. font-size: 14px;
  10. `;
  11. export default PageAlertBar;