Advertisement
Guest User

Untitled

a guest
Jun 15th, 2019
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. import styled from 'styled-components';
  2.  
  3. const Button = styled.button`
  4. padding: 10px 15px;
  5. background: grey;
  6. color: #000;
  7. border: 1px solid #000;
  8.  
  9. &:hover {
  10. background: blue;
  11. color: #fff
  12. }
  13. `
  14.  
  15. export default Button;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement