Signup.tsx 530 B

123456789101112131415161718192021222324
  1. import React from "react";
  2. function Signup() {
  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="M16 21v-2a4 4 0 00-4-4H5a4 4 0 00-4 4v2"></path>
  16. <circle cx="8.5" cy="7" r="4"></circle>
  17. <path d="M20 8L20 14"></path>
  18. <path d="M23 11L17 11"></path>
  19. </svg>
  20. );
  21. }
  22. export default React.memo(Signup);