styles.tsx 509 B

123456789101112131415161718192021222324252627
  1. import styled from 'styled-components';
  2. export const PasteIcon = styled.div`
  3. position: absolute;
  4. width: 15px;
  5. height: 15px;
  6. color: #3370ff;
  7. display: flex;
  8. justify-content: center;
  9. align-items: center;
  10. `;
  11. export const Wrap = styled.div`
  12. position: relative;
  13. width: 6px;
  14. height: 6px;
  15. background-color: rgb(143, 149, 158);
  16. color: #fff;
  17. border-radius: 50%;
  18. display: flex;
  19. align-items: center;
  20. justify-content: center;
  21. cursor: pointer;
  22. svg: {
  23. transform: scale(0.7);
  24. }
  25. `;