Advertisement
joygabriel21

Styled Components

Jan 20th, 2020
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. import React from 'react';
  2. import styled from 'styled-components';
  3.  
  4. const Div = styled.div`
  5. margin: 40px;
  6. border: 5px outset pink;
  7. &:hover {
  8. background-color: yellow;
  9. }
  10. `;
  11.  
  12. const Paragraph = styled.p`
  13. font-size: 15px;
  14. text-align: center;
  15. `;
  16.  
  17.  
  18. const OutsetBox = () => (
  19. <Div>
  20. <Paragraph>Get started with styled-components 💅</Paragraph>
  21. </Div>
  22. );
  23.  
  24. export default OutsetBox;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement