Stop.tsx 440 B

12345678910111213141516171819202122
  1. import React from "react";
  2. function Stop() {
  3. return (
  4. <svg
  5. xmlns="http://www.w3.org/2000/svg"
  6. width="48"
  7. height="48"
  8. fill="none"
  9. stroke="#5c666b"
  10. strokeLinecap="round"
  11. strokeLinejoin="round"
  12. strokeWidth="2"
  13. viewBox="0 0 24 24"
  14. >
  15. <circle cx="12" cy="12" r="10"></circle>
  16. <path d="M4.93 4.93L19.07 19.07"></path>
  17. </svg>
  18. );
  19. }
  20. export default React.memo(Stop);