UserInfo.styled.ts 570 B

1234567891011121314151617181920212223242526272829
  1. import styled, { css } from 'styled-components';
  2. export const Wrapper = styled.div`
  3. display: flex;
  4. justify-content: center;
  5. align-items: center;
  6. gap: 5px;
  7. svg {
  8. position: relative;
  9. }
  10. `;
  11. export const Text = styled.div(
  12. ({ theme }) => css`
  13. color: ${theme.menu.color.normal};
  14. `
  15. );
  16. export const HeaderText = styled.div(
  17. ({ theme }) => css`
  18. color: ${theme.menu.titleColor};
  19. `
  20. );
  21. export const LinkText = styled.div(
  22. ({ theme }) => css`
  23. color: ${theme.button.primary.invertedColors.normal};
  24. `
  25. );
  26. export const LogoutLink = styled.a``;