bar.tsx 1.2 KB

12345678910111213141516171819202122232425262728
  1. function BarPreview() {
  2. return (
  3. <svg
  4. viewBox="0 0 140 48"
  5. xmlns="http://www.w3.org/2000/svg"
  6. preserveAspectRatio="none"
  7. fill="#B85586"
  8. height="100%"
  9. width="100%"
  10. >
  11. <rect width="8" height="22" transform="matrix(-1 0 0 1 129 26)" />
  12. <rect width="8" height="40" transform="matrix(-1 0 0 1 107 8)" />
  13. <rect width="8" height="26" transform="matrix(-1 0 0 1 85 22)" />
  14. <rect width="8" height="29" transform="matrix(-1 0 0 1 63 19)" />
  15. <rect width="8" height="40" transform="matrix(-1 0 0 1 41 8)" />
  16. <rect width="8" height="29" transform="matrix(-1 0 0 1 19 19)" />
  17. <rect width="8" height="29" transform="matrix(-1 0 0 1 118 19)" />
  18. <rect width="8" height="35" transform="matrix(-1 0 0 1 140 13)" />
  19. <rect width="8" height="35" transform="matrix(-1 0 0 1 96 13)" />
  20. <rect width="8" height="35" transform="matrix(-1 0 0 1 74 13)" />
  21. <rect width="8" height="40" transform="matrix(-1 0 0 1 52 8)" />
  22. <rect width="8" height="48" transform="matrix(-1 0 0 1 30 0)" />
  23. <rect width="8" height="22" transform="matrix(-1 0 0 1 8 26)" />
  24. </svg>
  25. );
  26. }
  27. export default BarPreview;