Refresh.tsx 573 B

123456789101112131415161718192021222324
  1. import React from "react";
  2. function Refresh() {
  3. return (
  4. <svg
  5. xmlns="http://www.w3.org/2000/svg"
  6. width="24"
  7. height="24"
  8. fill="none"
  9. stroke="currentColor"
  10. strokeLinecap="round"
  11. strokeLinejoin="round"
  12. strokeWidth="2"
  13. className="feather feather-refresh-ccw"
  14. viewBox="0 0 24 24"
  15. >
  16. <path d="M1 4L1 10 7 10"></path>
  17. <path d="M23 20L23 14 17 14"></path>
  18. <path d="M20.49 9A9 9 0 005.64 5.64L1 10m22 4l-4.64 4.36A9 9 0 013.51 15"></path>
  19. </svg>
  20. );
  21. }
  22. export default React.memo(Refresh);