X.tsx 407 B

12345678910111213141516171819202122
  1. import React from "react";
  2. function X() {
  3. return (
  4. <svg
  5. xmlns="http://www.w3.org/2000/svg"
  6. width="48"
  7. height="48"
  8. fill="none"
  9. stroke="#000"
  10. strokeLinecap="round"
  11. strokeLinejoin="round"
  12. strokeWidth="2"
  13. viewBox="0 0 24 24"
  14. >
  15. <path d="M18 6L6 18"></path>
  16. <path d="M6 6L18 18"></path>
  17. </svg>
  18. );
  19. }
  20. export default React.memo(X);