Lock.tsx 460 B

12345678910111213141516171819202122
  1. import React from "react";
  2. function Lock() {
  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. <rect width="18" height="11" x="3" y="11" rx="2" ry="2"></rect>
  16. <path d="M7 11V7a5 5 0 0110 0v4"></path>
  17. </svg>
  18. );
  19. }
  20. export default React.memo(Lock);