SettingsWelcome.tsx 470 B

12345678910111213141516171819202122232425262728
  1. import React, { FC } from 'react';
  2. import styled from 'styled-components';
  3. interface Props {
  4. user: string;
  5. }
  6. const Title = styled.h2`
  7. font-size: 28px;
  8. font-weight: 300;
  9. span {
  10. padding-bottom: 2px;
  11. border-bottom: 2px dotted #999;
  12. }
  13. @media only screen and (max-width: 768px) {
  14. font-size: 22px;
  15. }
  16. `;
  17. const SettingsWelcome: FC<Props> = ({ user }) => (
  18. <Title>
  19. Welcome, <span>{user}</span>.
  20. </Title>
  21. );
  22. export default SettingsWelcome;