Login.tsx 429 B

123456789101112131415161718192021
  1. import React from "react";
  2. function Login() {
  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="M15 3h4a2 2 0 012 2v14a2 2 0 01-2 2h-4m-5-4l5-5-5-5m3.8 5H3"></path>
  16. </svg>
  17. );
  18. }
  19. export default React.memo(Login);