| 123456789101112131415161718192021222324 |
- import React from "react";
- function Signup() {
- return (
- <svg
- xmlns="http://www.w3.org/2000/svg"
- width="48"
- height="48"
- fill="none"
- stroke="#000"
- strokeLinecap="round"
- strokeLinejoin="round"
- strokeWidth="2"
- viewBox="0 0 24 24"
- >
- <path d="M16 21v-2a4 4 0 00-4-4H5a4 4 0 00-4 4v2"></path>
- <circle cx="8.5" cy="7" r="4"></circle>
- <path d="M20 8L20 14"></path>
- <path d="M23 11L17 11"></path>
- </svg>
- );
- }
- export default React.memo(Signup);
|