AllenYuan

Untitled

May 26th, 2020
42
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.49 KB | None | 0 0
  1. import React from 'react';
  2. import styled from 'styled-components';
  3.  
  4. const icon = props => {
  5. console.log('steamicon props', props);
  6. return (
  7. <svg {...props} viewBox="0 0 110 110">
  8. <path
  9. d="M55,0C25.881,0,2.062,22.634,0.14,51.267l28.525,11.507C31.172,61.029,34.214,60,37.5,60
  10. c0.706,0,1.396,0.063,2.076,0.155l13.426-19.691C53.021,29.159,62.19,20,73.5,20C84.822,20,94,29.178,94,40.5S84.822,61,73.5,61
  11. c-0.01,0-0.021-0.001-0.031-0.001L52.944,74.385C52.97,74.754,53,75.124,53,75.5C53,84.061,46.061,91,37.5,91
  12. c-7.565,0-13.855-5.422-15.218-12.591L2.118,70.107C8.685,93.134,29.866,110,55,110c30.376,0,55-24.624,55-55
  13. C110,24.625,85.376,0,55,0z M37.5,84c-0.915,0-1.795-0.148-2.621-0.416l-0.004,0.01l-0.252-0.104
  14. c-0.243-0.087-0.48-0.185-0.712-0.293l-6.805-2.801C28.945,84.295,32.902,87,37.5,87C43.851,87,49,81.852,49,75.5
  15. S43.851,64,37.5,64c-1.406,0-2.747,0.265-3.993,0.727l7.2,2.904c0.05,0.021,0.1,0.039,0.149,0.061l0.56,0.226l-0.015,0.037
  16. C44.131,69.368,46,72.213,46,75.5C46,80.194,42.194,84,37.5,84z M88,40.5C88,32.492,81.508,26,73.5,26S59,32.492,59,40.5
  17. S65.492,55,73.5,55S88,48.508,88,40.5z M63,40.5C63,34.701,67.701,30,73.5,30S84,34.701,84,40.5S79.299,51,73.5,51
  18. S63,46.299,63,40.5z"
  19. />
  20. </svg>
  21. );
  22. }
  23.  
  24. export default styled(icon)`
  25. fill: #f5f5f5;
  26. height: 16px;
  27. margin: 0 6px;
  28. transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;
  29. vertical-align: middle;
  30. width: auto !important;
  31. `;
Advertisement
Add Comment
Please, Sign In to add comment